Page 1 of 1
Ignore a newline
Posted: Thu Sep 02, 2010 6:58 am
by Relikt
HI
How i ignore a newline with regular expression (Search for:)?
Posted: Fri Sep 03, 2010 5:47 am
by Relikt
if have found: \s
Posted: Fri Sep 03, 2010 8:53 am
by ben_josephs
\s matches any white space character.
\r matches a carriage return.
\n matches a line feed (Unix line ending).
\r\n matches a carriage return-line feed pair (Windows line ending).
\r\n? matches a Unix or Windows line ending.
But you said you wanted to ignore a newline. What exactly do you mean?