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

来源:3-6 查找所有匹配结果

政屿

2020-10-19 15:58

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


写回答 关注

1回答

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

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

PHP进阶篇

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

181835 学习 · 2577 问题

查看课程

相似问题