in reply to reg exps
Refer to perlre and perlrun.
Or you could use tr, refer to perlop: perl -i.bak -pe 'tr/0-9.//cd' file
Add "\n" to the regex or -l to the command line switches to preserve newlines.
-- John.