REGEX:在字符串中出现另一个字符后替换特定字符

时间:2009-09-23 23:06:06

标签: regex vim

我有这个字符串: owl:Class rdf:about =“#other important people”

我希望在vim正则表达式的帮助下用_替换空格,但只能在以#开头的单词之后。

我的意思是我最后想要: owl:Class rdf:about =“#other_important_people”

抱歉我的语法不好

1 个答案:

答案 0 :(得分:2)

:s/\(#[^"]*\)\@<= /_/g