私はphpに文字列を持っています
$str = "@113_Miscellaneous_0 = 0@,@104_documentFunction_0 = 1@";
@ char の間の文字列を抽出して、結果の結果が配列になるように、正規表現を適用するにはどうすればよいですか
result[0] = "113_Miscellaneous_0 = 0";
result[1] = "104_Miscellaneous_0 = 1";
@Fluffeh@ Utkanosを編集してくれてありがとう-このようなことを試しました
$ptn = "@(.*)@";
preg_match($ptn, $str, $matches);
print_r($matches);
output:
Array
(
[0] => \"113_Miscellaneous_0 = 0\",\"104_documentFunction_0 = 1\"
[1] => \"113_Miscellaneous_0 = 0\",\"104_documentFunction_0 = 1\"
)