当前位置:  开发笔记 > 编程语言 > 正文

简单的RegEx PHP

如何解决《简单的RegExPHP》经验,为你挑选了1个好方法。



1> robmerica..:

即使你不合适也不要使用'.*',直到你有更多的RegEx练习.我认为一个很好的解决方案是:

'/]+>([^<]+)<\/a>/i'

注意'/'分隔符 - 您必须在PHP中使用prege的regex函数套件.它看起来像这样:

preg_match_all($pattern, $string, $matches);
// matches get stored in '$matches' variable as an array
// matches in between the  tags will be in $matches[1]
print_r($matches);

推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有