Hi,

        What is the best way to search for all printable characters.  i.e..
I want to eliminate any characters such as \n\r etc.

Is it best to return what you want to see.


$somestring =~ s/[^0-9a-zA-Z]//g; 

or 

$_ = $somestring;

s/[\n\r]//g;


I want to keep the spaces.

Thanks!

-Tim

---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to