我有一个PHP preg_match_all
和REGEX问题。
我有以下代码:
<?php
$string= 'attribute1="some_value" attribute2="<h1 class=\"title\">Blahhhh</h1>"';
preg_match_all('/(.*?)\s*=\s*(\'|"|&#?\w+;)(.*?)\2/s', trim($string), $matches);
print_r($matches);
?>
对于我想用HTML引用HTML的实例,似乎没有提取转义引号。我已经尝试了很多解决方案,引用REGEX修复内部的基本引号,但似乎没有一个适合我。我似乎无法将它们正确地放在这个预先存在的REGEX中。
我不是REGEX的主人,请有人指点我正确的方向吗?
我想要达到的结果是:
Array
(
[0] => Array
(
[0] => attribute1="some_value"
[1] => attribute2="<h1 class=\"title\">Blahhhh</h1>"
)
[1] => Array
(
[0] => attribute1
[1] => attribute2
)
[2] => Array
(
[0] => "
[1] => "
)
[3] => Array
(
[0] => some_value
[1] => <h1 class=\"title\">Blahhhh</h1>
)
)
感谢。
答案 0 :(得分:1)
您可以使用negative lookbehind assertion:
解决此问题'/(.*?)\s*=\s*(\'|"|&#?\w+;)(.*?)(?<!\\\\)\2~/'
^^^^^^^^^
结尾引用不应由\
作为前缀。给我:
Array
(
[0] => Array
(
[0] => attribute1="some_value"
[1] => attribute2="<h1 class=\"title\">Blahhhh</h1>"
)
[1] => Array
(
[0] => attribute1
[1] => attribute2
)
[2] => Array
(
[0] => "
[1] => "
)
[3] => Array
(
[0] => some_value
[1] => <h1 class=\"title\">Blahhhh</h1>
)
)
这个正则表达式并不完美,因为它是你所在的实体作为分隔符,就像引号一样,它也可以用\
进行转义。不知道这是不是真的有意。
另见这个很棒的问题/答案:Split string by delimiter, but not if it is escaped。