作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,如果我想查找并替换为包含反斜杠或正斜杠的字符串,在 vim 中如何实现?
示例查找并替换为::%s/foo/bar/g
如果我想查找所有出现的 <dog/>
该怎么办?并将其替换为 <cat\>
最佳答案
与在 linuxy 程序中大多数其他地方转义字符的方式相同,使用反斜杠:
:%s/<dog\/>/<cat\\>
但请注意,您可以选择不同的分隔符:
:%s@<doc/>@<cat\\>@
这可以节省您在带有大量斜杠的模式中键入所有那些耗时且令人困惑的反斜杠。
来自documentation :
Instead of the
/
which surrounds the pattern and replacement string, you can use any other single-byte character, but not an alphanumeric character,\
,"
or|
. This is useful if you want to include a/
in the search pattern or replacement string.
关于regex - 如何在 VIM 查找/搜索中转义反斜杠和正斜杠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2465156/
我是一名优秀的程序员,十分优秀!