1

我正在使用以下正则表达式:

$sEmailHTML = preg_replace ("/<\!-- +(\\[[\"a-zA-Z_]+\\]) +-->/U", "\\1", $sEmailHTML);
$sEmailHTML = preg_replace ("/\\[\"(.+)\"\\]/U", "\\1", $sEmailHTML);

在这篇文章中:

["Text:"]
<!-- ["Click this to authenticate"] --> <!-- [authlink] -->
<!-- ["Dear"] --> <!-- [firstname] --><!-- [":"] -->

它给了我这个结果:(也替换了 [authlink] 和 [firstname])

Text:
<!-- Click this to authenticate --> <a href="http://www.mydomain.tld/auth.php?jj=100&aa=SOMEVALUE&end">http://www.mydomain.tld/auth.php?jj=100&aa=SOMEVALUE&end</a>
Dear John<!-- : -->

什么时候应该给出这个:

Text:
Click this to authenticate <a href="http://www.mydomain.tld/auth.php?jj=100&aa=SOMEVALUE&end">http://www.mydomain.tld/auth.php?jj=100&aa=SOMEVALUE&end</a>
Dear John:

我不明白为什么它没有删除所有的 HTML 注释标签。如果我执行两次评论删除器正则表达式,它也不起作用。所以它要么是一个错误,要么是我遗漏了一些东西。(PHP 5.2.17)

谢谢。我没有想。更改为并工作:

$sEmailHTML = preg_replace ("/<!-- +(\\[[a-zA-Z_]+\\]) +-->/U", "\\1", $sEmailHTML);
$sEmailHTML = preg_replace ("/<!-- +(\\[\".+\"\\]) +-->/U", "\\1", $sEmailHTML);
$sEmailHTML = preg_replace ("/\\[\"(.+)\"\\]/U", "\\1", $sEmailHTML);
4

1 回答 1

3

发生这种情况是因为文本

"Click this to authenticate"

在它们和你的正则表达式中有空格:

"/<\!-- +(\\[[\"a-zA-Z_]+\\]) +-->/U"

不匹配空格。此外,要匹配文字[,请使用\[,而不是\\[

将其更改为:

"/<!-- +(\[[\"a-zA-Z_ ]+\]) +-->/U"
                     ^

看见

于 2012-05-03T07:07:58.267 回答