Hi guys,
simple example in Notepad++ using RegEx replace
search for: anything
replace with (wanted): \test
guess for regex replace string: \test
results in:tab
est, so the \t is interpreted as atab
guess for regex replace string: \\test
results in: \tab
est, so the first \ is interpreted as a \, the \t is interpreted as atab
guess for regex replace string: \ test (
space
in between \ and test)
results in: \ test (space
in between \ and test)
How can I do this to get \test as the result? Are there any group or end of command characters for the replace string? Or an empty character that I can add after the \?
Thanks, Axel