Ignore a newline

General questions about using WildEdit

Moderators: AmigoJack, helios, bbadmin, Bob Hansen, MudGuard

Post Reply
Relikt
Posts: 5
Joined: Fri Mar 26, 2010 10:23 am

Ignore a newline

Post by Relikt »

HI

How i ignore a newline with regular expression (Search for:)?
Relikt
Posts: 5
Joined: Fri Mar 26, 2010 10:23 am

Post by Relikt »

if have found: \s
ben_josephs
Posts: 2456
Joined: Sun Mar 02, 2003 9:22 pm

Post 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?
Post Reply