>    I am looking for help on a regex that examines strings such as
>
> "xxxN yyyyyyy sssNNN"
> "xxxN yyyNyyy sssNNNN"
> "xxxN yyyNyyy ssssssN"
>
> and returns only the sss part?  N is always a numeral, and s is always
> alphabetic.

Does 
/\s(\D+?)\d+$/ 
work?
-- 
David Budd, IT Services
Kilburn Building, University of Manchester
Tel 56033 Email [EMAIL PROTECTED] 
 


_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to