in reply to Re^4: Regex for weird characters
in thread Regex for weird characters
# cat match.pl #!/usr/bin/perl -l while (<DATA>) { chomp; print "$_ " . (/[^a-z0-9!\@#\$%^&*(),.?~:;<>+ =_'"-]/ ? "contains w +eird stuff":"is fine"); } __DATA__ funky town ^-^ b* f1 top` # perl match.pl funky town is fine ^-^ is fine b* is fine f1 is fine top` contains weird stuff #
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Regex for weird characters
by sulfericacid (Deacon) on Sep 27, 2004 at 16:25 UTC |