如何使用正则表达式从字符串中获取'参数'列表?

时间:2012-06-26 10:16:37

标签: php

我的字符串包含

等参数
  

“你好,%{user}。请给%{client}一把刀。”

所以,请,我不熟悉正则表达式,我需要php构造,它可以从字符串中获取参数列表。拜托,帮助我,希望你能。谢谢。

1 个答案:

答案 0 :(得分:1)

$str = "Hello, %{user}. Please, give %{client} a knife".
preg_match_all("/%\{(.*?)\}/", $str, $matches);
print_r($matches);