我正在努力了解如何使用正则表达式将不可打印的回车字符添加到 html 字符串中。
它是一个 WordPress 的东西,自动嵌入视频我需要将 URL 放在 html 中自己的行上。
首先我使用正则表达式:
In item.vid_src replace ($) with \\r$1
s is checked.
之后,我使用了一个带有字符串生成器的循环 - 我将 vid_src 添加到描述的开头,因此:
item.vid_src
<br><br>
item.description
assign results to item.description
在我在管道中包含 Regex 模块之前,我得到了这个:
http://www.youtube.com/watch?v=THA_5cqAfCQ<br><br><p><h1 class="MsoNormal">Cheetahs on
the edge</h1>
但我需要这个:
http://www.youtube.com/watch?v=THA_5cqAfCQ
<br><br><p><h1 class="MsoNormal">Cheetahs on the edge</h1>
添加正则表达式模块我得到这个:
http://www.youtube.com/watch?v=THA_5cqAfCQ\r<br><br><p><h1 class="MsoNormal">
Cheetahs on the edge</h1>
显然它插入的正是我所要求的,但这不是我所期望的,我需要用换行符格式化 html。有没有人知道如何解决这个问题?