前提・実現したいこと
下記のようなパターンのテキストがあり、 括弧内の値を取り出したいと考えています。
$test = "test(foge(fuga))";
$test = "test(test(fuga)test(foge))";
$test = "test(test(fuga))test(foge)";
ネストしているパターンでは取り出せるのですが、括弧が複数あるパターンでは、外側の括弧の中を取り出してしまいます。
どうすれば、各のパターンに対応する部分を取り出せるでしょうか?
発生している問題・エラーメッセージ
php
1$test = "test(test(fuga))test(foge)"; 2//test(fuga))test(fogefuga); 3
")"がひとつ多くつきます。
該当のソースコード
php
1$input = str_split($test); 2$last = array_search(")",$input); 3$first = array_keys($input,"("); 4if($first[1] < $last){ 5 preg_match_all('{((.*))}', $test, $match); 6 $match = $match[1][0]; 7print_r($match); 8 while(strpos($match, '(') !== false){ 9 preg_match_all('/(?<=().*(?=))/',$match, $match_a); 10 $match = $match_a[0][0]; 11 } 12 print_r($match); 13}elseif($first[1] > $last){ 14 $clip = array_slice($input,$first[0] +1, $last - $first[0] - 1); 15 $match = implode($clip); 16}else{ 17 $match = $test; 18} 19 print_r($match); 20 21結果 22test(foge(fuga)) 23//foge(fuga) 24test(test(fuga)test(foge)) 25//test(fuga)test(foge) 26test(test(fuga))test(foge) 27//test(fuga))test(fogefuga)
試したこと
一度一文字づつ配列にし、"("の次が"("かを判定
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー