这是我正在使用的子字符串
[sitetree_link%20id=2]
我需要用空格替换[]之间出现的所有%20。但很明显,如果[]括号外有%20s,请不要管它们......
我现在正在学习正则表达式,但这个看起来很难。有人为此获得了超级聪明的正则表达式吗?
谢谢:)
答案 0 :(得分:5)
你可以试试这个
$result = preg_replace('/(\[[^]]*?)(%20)([^]]*?\])/m', '$1 $3', $subject);
<强>解释强>
( # Match the regular expression below and capture its match into backreference number 1
\[ # Match the character “[” literally
[^]] # Match any character that is NOT a “]”
*? # Between zero and unlimited times, as few times as possible, expanding as needed (lazy)
)
( # Match the regular expression below and capture its match into backreference number 2
%20 # Match the characters “%20” literally
)
( # Match the regular expression below and capture its match into backreference number 3
[^]] # Match any character that is NOT a “]”
*? # Between zero and unlimited times, as few times as possible, expanding as needed (lazy)
\] # Match the character “]” literally
)