Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试替换一个由非单词字符包围的字符串。
我的目标字符串是
;ab.ab,abb...
我想得到结果
;[ab].[ab],abb...
这是我的模式
s/([^\w]+)(ab)([^\w]+)/$1[$2]$3/g
但它不会替换第二个匹配项,因为第一个匹配项是 ;ab。第二场比赛是在 ab,abb 的尾巴上完成的......
有任何想法吗?
只使用word-boundary怎么样?
s/\b(ab)\b/[$1]/g