上記のように、結果を 12abc34
$string = "some text (12abc34) more text";
if(preg_match("/[(][.][)) にしたいとします。 ] /",$string,$matches)){
echo $matches;
}
?>
上記のように、結果は 12abc34 になるようにします
- -----解決策-------------------
$string = "一部のテキスト (12abc34) 追加のテキスト";
preg_match ('/(([a-z0-9]+))/', $string, $matches);
echo $matches[1];
------解決策---------
$string = "一部のテキスト (12abc34) 追加のテキスト";
$preg = "/d+.*d+/";
preg_match($preg, $string, $matches);
var_dump($matches);
これを試してください