in reply to Re: Inverse regexes for input validation
in thread Inverse regexes for input validation
thanks very much for the help.my ($text) = @_; $text =~ s/[^A-Za-z0-9 -]+//g; return $text;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Inverse regexes for input validation
by graff (Chancellor) on Mar 29, 2007 at 01:15 UTC |