我需要使用正则表达式来提取不受某些标签(<ins>
和<del>
)约束的值。例如:
<?php
$a = "this text <ins>is designed to</ins> give the impression of a real king <ins> cobra </ins> in desert";
preg_match_all("/(?<!<del>|<ins>)(.+)(?!<\/del>|<\/ins>)/", $a, $matches);
var_dump($matches);
?>
我已经用上面的环视方法试过了,但是没有运气捕捉到标签之外的ins
东西。del
有任何想法吗?