标签: php
我的字符串包含
“你好,%{user}。请给%{client}一把刀。”
所以,请,我不熟悉正则表达式,我需要php构造,它可以从字符串中获取参数列表。拜托,帮助我,希望你能。谢谢。
答案 0 :(得分:1)
$str = "Hello, %{user}. Please, give %{client} a knife". preg_match_all("/%\{(.*?)\}/", $str, $matches); print_r($matches);