记事本++ - 用重复替换单词

时间:2015-11-13 09:01:18

标签: regex pattern-matching notepad++

如何替换

the, cat, walked, down, the, road

the [the], cat [cat], walked [walked], down [down], the [the], road [road]

?到目前为止,我已经尝试找到:(。+),替换:\ 1 [\ 1]

感谢您的时间。

1 个答案:

答案 0 :(得分:2)

匹配一个或多个word characters

\w+

并替换为$0 [$0]

See demo at regex101$0与正则表达式完全匹配。

您的正则表达式(.+),greedily match直到最后一次出现逗号。