可能性の重複:preg_matchから名前付きキャプチャだけを取得するにはどうすればよいですか?
$string = 'Hello, my name is Linda. I like Pepsi.'; $regex = '/name is (?<name>[^.]+)\..*?like (?<likes>[^.]+)/'; preg_match($regex, $string, $matches); print_r($matches);
この版画:
Array ( [0] => name is Linda. I like Pepsi [name] => Linda [1] => Linda [likes] => Pepsi [2] => Pepsi )
どのようにすることができます私はGE
how to force preg_match preg_match_all to return only named parts of regex expression
私はこのスニペットを持っていますただ返すようにT:
Array
(
[name] => Linda
[likes] => Pepsi
)
結果配列のフィルタリングに頼ることなく:
foreach ($matches as $key => $value) {
if (is_int($key))
unset($matches[$key]);
}
'foreachの($ K => $ Vとして$マッチ)を数値インデックスを戻しますk]); } } 'テンキーを削除し、名前付きキーのみを残す。 – Radu