http://www.perlmonks.org?node_id=418849


in reply to Need some character class examples

Those will come in handy with regular expressions. You should have perldoc installed on your system, so try: perldoc perlrequick and  perldoc perlretut.
print "Matched!\n" if($user =~ /^aristotle73$/i);
Try reading those first. They'll give you a better idea. HTH.

Replies are listed 'Best First'.
Re^2: Need some character class examples
by aristotle73 (Sexton) on Jan 03, 2005 at 02:45 UTC
    Thx, that helped a bunch :D