PHP的preg_match_all正则字符多次出现第一次出代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-06 14:15:09 浏览: 评论:0
- $str[1]="i我是一只小小qq:42343243 444234324";
- $str[2]="我是一只小小qq联系人42343244234 fasdfdsfas";
- $str[3]="我是一只小小qq42343244234 fasdfdsfas";
- $preg="#(d*)(d{5,14})#";
- for($i=1;$i<4;$i++){
- preg_match($preg,$str[$i],$arr);
- echo "<pre>";
- print_r($arr);
- echo "<pre>";
- }
最简单的方法如下:
- preg_match_all('/(qq)+.*?(d{4,16})/i', $c, $strresult);
- int preg_match_all ( string pattern, string subject, array matches [, int flags])
在 subject 中搜索所有与 pattern 给出的正则表达式匹配的内容并将结果以 flags 指定的顺序放到 matches 中.
搜索到第一个匹配项之后,接下来的搜索从上一个匹配项末尾开始.
flags 可以是下列标记的组合,注意把 preg_pattern_order 和 preg_set_order 合起来用没有意义.
Tags: preg_match_all 正则字符
相关文章
- ·php中正则匹配中文汉字(2014-03-12)
- ·PHP中preg_match_all函数正则匹配详解(2014-09-13)
- ·preg_match_all使用心得分享(2020-09-07)
- ·php正则字符串中邮箱地址e-mail(2014-09-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)