parsed.org
Remove Control Characters with Perl by xinu on Aug 28, 2008 08:56 AM

With the following code you can be rid of control characters forever:

$string_with_ctrl_characters =~ tr/\040-\176/ /c;
asciicontrolperl
RSS