On Thu, Jan 10, 2002 at 10:38:50AM +0100, Jorge wrote:
> Hi, I have this:
> if (/hardware ethernet /) {   
>                       $_=(split/\{/)[1];      
>                       s/[^\d:A-F]//g;         # remove anything not 0..9,A..F 
>                       #print "$_\n";
>                       
>               }
>               
> It works but I dont want to remove th eletter between a-f if it is in lower 
> case.
> How can I do to have the upper and th elower case.
> Thanks        
>               
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
---end quoted text---
how about s/[^\d:A-Fa-f]//g ?
or s/[^\d:a-f]//ig ?

-- 
 Frank Booth - Consultant
Parasol Solutions Limited.
(www.parasolsolutions.com)

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to