in reply to Form Escapes @#%!???
You could replace any of these: \r \n \f with nothing.
$formVar =~ s/\n|\r|\f//g;
In Section
Seekers of Perl Wisdom
in reply to Form Escapes @#%!???
$formVar =~ s/\n|\r|\f//g;