On Friday, August 8, 2003, at 11:13:51 [UTC+0200] (Friday, August 8,
2003 11:13 my local time) Mark Partous wrote:

> \w{40,}

[...]

> Is there an easy way to exclude the underscore character from the rule

The simplest method is the explicit use of character class like this one:

[a-zA-Z0-9]{40,}

instead of \w{40,} expression. In RegExp "language" the symbol \w
means "all alphabetic characters and the underscore character".

-- 
Best regards,
Zygmunt Wereszczynski
(Using The Bat! v2.0 Beta/1 on Windows 95 4.0 Build 1111 b)


________________________________________________________

http://www.silverstones.com/thebat/TBUDLInfo.html

Reply via email to