gpt4 book ai didi

php - 如何将html转换成一行字符串?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:05:41 25 4
gpt4 key购买 nike

我有一些大型的 html 模板:

<% /*   
This is basically all the markup and interface
/* %>
<div id="test" class="test-right"></div>
<div id="test" class="test-right"></div>

我需要将其作为一行字符串,例如:

<% /*\n  This is basically all the markup and interface\n*/ %>\n<div id=\"test\" class=\"test-right\"></div>\n   <div id=\"test\" class=\"test-right\"></div>

你怎么做到的?

original_string='test this id="one" test this id="two"'
string_to_replace_Suzi_with=\"
result_string="${original_string/"/$string_to_replace_Suzi_with}"

最佳答案

如果你想用乱码 \n 替换换行符(回车),你可以使用 awk:

awk -v ORS='\\n' 1 file

这会将输出记录分隔符 ORS 替换为乱码 \n1 触发awk 中的默认操作,打印整条记录。

关于php - 如何将html转换成一行字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42131332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com