How does one escape backslashes and forward slashes in VIM find/search?
I was looking for something similar, to search for register values containing the /
character (to record a macro). The solution was to search using the ?
token instead of the /
.
Quote them with a backslash. Also, it often helps to use another delimiter besides slash.
:%s#<dog/>#<cat\\>#
or if you have to use slash as the substitute command delimiter
:%s/<dog\/>/<cat\\>/
%s:<dog/>:<cat>
You can replace the / delimiters if they become annoying for certain patterns.
Same way you escape characters most anywhere else in linuxy programs, with a backslash:
:%s/<dog\/>/<cat\\>
But note that you can select a different delimiter instead:
:%s@<doc/>@<cat\\>@
This saves you all typing all those time-consuming, confusing backslashes in patterns with a ton of slashes.
From the 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.