Home > Backend Development > PHP Tutorial > 请问一个正则,试了半天没试出来~

请问一个正则,试了半天没试出来~

WBOY
Release: 2016-06-13 10:29:15
Original
920 people have browsed it

请教一个正则,试了半天没试出来~~~

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$str = "十三岁(123)宣(言)(373659)";
Copy after login


我现在想匹配出“十三岁(123)宣(言)”,我自己写的是:
'/[^(\(\d{6}\))]/'

结果不对,要怎么写这个正则呢?

------解决方案--------------------
PHP code
$str = "十三岁(123)宣(言)(373659)";preg_match('/.*\(\d+\).*\(.+\)/U', $str, $m);print_r($m[0]);/**输出结果:十三岁(123)宣(言)*/<br><font color="#e78608">------解决方案--------------------</font><br>
Copy after login
PHP code
$a = "十三岁(123)宣(言)(373659)";preg_match('/.*(?=\(\d{6}\))/',$a,$m);print_r($m);<br><font color="#e78608">------解决方案--------------------</font><br>?=exp<br>匹配exp前面的位置<div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template