标签: regex vim
我有这个字符串: owl:Class rdf:about =“#other important people”
我希望在vim正则表达式的帮助下用_替换空格,但只能在以#开头的单词之后。
我的意思是我最后想要: owl:Class rdf:about =“#other_important_people”
答案 0 :(得分:2)
:s/\(#[^"]*\)\@<= /_/g