标签: regex pattern-matching notepad++
如何替换
the, cat, walked, down, the, road
与
the [the], cat [cat], walked [walked], down [down], the [the], road [road]
?到目前为止,我已经尝试找到:(。+),替换:\ 1 [\ 1]
感谢您的时间。
答案 0 :(得分:2)
匹配一个或多个word characters
\w+
并替换为$0 [$0]
$0 [$0]
See demo at regex101。 $0与正则表达式完全匹配。
$0
您的正则表达式(.+),会greedily match直到最后一次出现逗号。
(.+),