$String = 'Integration Test Lead: \ul\b0  \tab\tab\tab Kimberly
Kim\tab\tab\tab\tab\tab\tab  \par';

How would I extract "Kimberly Kim" from the string using regular
expression. Is there a way using expression to skip "\[characters]" (
like \tab ) and search for only real words, maybe between spaces.

Have you thought of using the \t\t\t as a marker for the start of the string you want to capture, like:
$string =~ /\t\t\t([^\t]+)/


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

Reply via email to