Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Problem with regular expression

by Utilitarian (Vicar)
on Feb 12, 2013 at 16:01 UTC ( [id://1018403]=note: print w/replies, xml ) Need Help??


in reply to Problem with regular expression

Your criteria are a little under specified, however the following works, for what you've asked.
#!/usr/bin./perl use strict; use warnings; my @in=("TFS100","TFS 100","TFS-CR100", "TFS-CR 100","TFS_100","TFS ID 100", "TFS CR 100","TFS ID100","TFS-ID 100", "TFS ID:100","TFS-ID: 100", "- TFS CR634: STRESS: H 17326,21600,", "CR0080588","TFS0080588" ); for (@in){ print "$1\n" if /TFS[-_\s]?(?:CR|ID)?\s?([1-9]\d+)/; }
print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."

Replies are listed 'Best First'.
Re^2: Problem with regular expression
by AnomalousMonk (Archbishop) on Feb 12, 2013 at 17:18 UTC
    Your criteria are a little under specified...

    Amen to that, brother!

Log In?
Username:
Password:

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

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

    No recent polls found