in reply to Re: I need a Regex to get my Dirty Data Whiter.
in thread I need a Regex to get my Dirty Data Whiter.

Another way of doing that that usually benchmarks faster is a simple tr:
while (<>) { tr/ -~//cd; }

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
RE: RE: Re: I need a Regex to get my Dirty Data Whiter.
by davorg (Chancellor) on Aug 03, 2000 at 16:58 UTC