Hello,
My source code contains tabs and newlines. How do I tell the IDE editor
(using find and replace) to replace such characters with other characters. I
guess this boils down to how to represent control characters in
search/replace strings. I've tried using a backslash to escape them but that
doesn't work (at least the way I did it).
Thanks,
Ray
Mike Blake-Knox - 19 Sep 2007 18:07 GMT
> My source code contains tabs and newlines. How do I tell the IDE editor
> (using find and replace) to replace such characters with other characters.
Using regular expressions, \t and \n match tab and newline characters
respectively.
Mike