This is most definately not the same... \w is equivalent to [A-Za-z0-9_] there's a basic regexp tutorial here: http://japh.nu/index.cgi?base=regexes it also deals with (custom made) character classes, special symbols in regexps etc, maybe it's beneficial to you. regards, Jos Boumans <snip> Also, [a-zA-Z] can be replaced with \w, which does the same thing. So, you have $name =~ /^\w+$/ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
- Re: regexp issues Jeff 'japhy/Marillion' Pinyan
- Re: regexp issues Teresa Raymond
- Re: regexp issues Jeff 'japhy/Marillion' Pinyan
- Re: regexp issues TR Teresa Raymond
- Re: regexp issues TR Jeff 'japhy/Marillion' Pinyan
- Re: regexp issues TR Teresa Raymond
- Re: regexp issues ... Rachel Coleman
- Re: regexp issues Paul
- Re: regexp issues Carl Rogers
- RE: regexp issues Mooney Christophe-CMOONEY1
- Jos I. Boumans