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

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

WBOY
WBOYOriginal
2016-06-13 10:29:15917browse

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

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


我现在想匹配出“十三岁(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>
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>
Statement:
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