首页  >  文章  >  后端开发  >  正则怎么同时匹配两种模式

正则怎么同时匹配两种模式

WBOY
WBOY原创
2016-06-13 13:10:55991浏览

正则如何同时匹配两种模式
我不知道怎么表达清楚我的意思,举个例子

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->$content = "xxxhttp://xxx.com/hello.htmlxxx";
preg_match_all( "/http:\/\/xxx\.com\/[\w|']{4,17}\.html/iUs", $content, $result);
// 将会得到结果 
array(
[0] => array(
    [0] => http://xxx.com/hello.html
    )
)


我想同时得到表达式代表的 hello 该怎么做?

------解决方案--------------------
实际操作楼上已经写了

我提供两个参考链接
http://deerchao.net/tutorials/regex/regex.htm
这个是我查正则写法的参考文档

http://cn.php.net/manual/zh/reference.pcre.pattern.syntax.php
这个是php使用的pcre正则的参考手册
------解决方案--------------------
楼主没有把正则练习熟悉,需要把正则各个符号的意思,弄清楚,那么就不难了.
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn