> Im looking for a Regular Expression pattern 
> that will allow me to remove everything from a string but Numeric values.  

Probably easiest way is 

  $x='abc123!@#456xyz'; 
  $x =~ s/\D//g; 
  print $x;

Should yield 123456

Regards,

Rick

_______________________________________________
Perl-Win32-Admin mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to