正则表达式之间的所有内容

时间:2011-02-28 04:21:27

标签: php preg-replace

我有一个字符串,可以用两种不同的方式查看:

foo=bar (everything after "=" including any other character)
or
foo=bar&bar (everything between "=" and "&")

我想在这种特殊情况下使用正则表达式,我怎样才能替换foo的值

1 个答案:

答案 0 :(得分:0)

匹配(foo)=([^&]+)将捕获foo以及等号右侧相应右侧的内容值。我不确定你想要用它做什么。