http://qs321.pair.com?node_id=1018403


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!