規則的なルールを聞きたいのですが、長い間試していません~~~
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $str = "十三岁(123)宣(言)(373659)";
$str = "13歳(123)発表(373659)"; preg_match('/.*(d+).*(.+)/U', $str, $m); print_r($m[0]); /**出力結果: 13歳(123)宣言*/ <br><font color="#e78608">------解決策------------------</font><br>
$a = "13歳(123)発表(373659)"; preg_match('/.*(?=(d{6}))/',$a,$m); print_r($m); <br><font color="#e78608">------解決策---------</font><br>?=exp<br>は前のexpの場所と一致します<div class="clear"></div>