标签: regex replace powergrep
我正在尝试使这个正则表达式工作, 需要在文本中找到#字符的每一个出现,并用不同的单词替换每个下一个出现,例如: word1,word2,word3 ...试过这个
(^.*#.*$)
替换为
(word1) (word2) (word3)
或
\1word1\2word2\3word3
它总是用所有单词替换它。