问答详情
源自:3-6 查找所有匹配结果

正则表达中,[^>]是什么意思?

$p = "|<[^>]+>(.*?)</[^>]+>|i";
$str = "<b>example: </b><div align=left>this is a test</div>";
preg_match_all($p, $str, $matches);
print_r($matches);


提问者:政屿 2020-10-19 15:58

个回答

  • 慕码人5437250
    2020-10-26 17:06:57

    不是以>开头的任意字符。