Skip to content
Prev 60047 / 398502 Next

escaping backslash in a string

I have it working now, I think. Since it's going into a regular
expression, I have to escape each of the escape characters, resulting
in four backslashes altogether:
[1] "axb"
[1] "a.b"
[1] "a.b"
[1] "a.b"
[1] "a\\.b"
a\.b>

or
a\.b> 

Dan