Vim Regex

http://vimregex.com/

Vim编辑器的高频操作

查找

Use \< and \> for word start and word end, respectively

/"[a-zA-Z0-9\/\.]\+"
匹配路径字符串

替换

:%s/U\(\w*\)\(Property\)/F\1\2/g

vim (last edited 2021-03-25 07:17:45 by zbjxb)