Find Replace Question

Sachin

Member³
How do I find / replace tabs, new line characters, etc?

e.g. If I wanted to replace
A,
B
with
C,
D
?

Thanks,
 
Search as regular expression:

"You can use special character sequences to put non-printable characters in your regular expression. Use \t to match a tab character (ASCII 0x09), \r for carriage return (0x0D) and \n for line feed (0x0A). More exotic non-printables are \a (bell, 0x07), \e (escape, 0x1B), \f (form feed, 0x0C) and \v (vertical tab, 0x0B). Remember that Windows text files use \r\n to terminate lines, while UNIX text files use \n."

More is athttp://www.regular-expressions.info/characters.html
 
Back
Top