这现在主要是学术性的,因为我可以通过其他方式获得相同的结果,但是……它一直困扰着我,我敢肯定使用正则表达式是可能的。
我想使用 PHP 的 preg_replace 来替换内容:
Content: “String <tag>This is some content, which contains newlines and quotation marks.</tag> and other unrelated content”.
Regex: /<tag>(.*)<\/tag>/sU
Replace: “String of other content, including matched pattern $1”
但是问题是,我想去掉元素之间的任何换行符和/或引号。什么正则表达式可以让我这样做?