Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^4: Perl Regex to take the UC Words.

by hdb (Monsignor)
on Mar 28, 2013 at 15:16 UTC ( [id://1025974]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Perl Regex to take the UC Words.
in thread Perl Regex to take the UC Words.

What about capitalized words later in the line? Shall they be excluded?

use strict; use warnings; while(<DATA>) { my @array = $_ =~ m/\b([a-zA-Z]+[0-9]*)\b/g; foreach (@array) { last if /[a-z]/; print "$_ "; } print "\n"; } __DATA__ BROUGHTON VETERINARY GROUP123. Leicestershire mixed practice seek EXPE +RIENCED vet to replace assistant relocating to Scotland GIRLING AND BOWDITCH VETERINARY SURGEONS We are looking for an experie +nced vet for our 5 vet mixed practice. STANHOPE PARK VETERINARY HOSPITAL. Due to a pregnancy epidemic we are +looking for 2 new vets, 100% small animal hospital in County Durham.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1025974]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-24 21:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found