Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: regexp wizardry needed

by johngg (Canon)
on Jan 25, 2013 at 23:24 UTC ( [id://1015426]=note: print w/replies, xml ) Need Help??


in reply to Re: regexp wizardry needed
in thread regexp wizardry needed

my @date = map ucfirst, map lc, split ' ', $lines2;

I'm not sure why you are going with two maps, one would be sufficient.

$ perl -E ' > $line = q{PERIOD 13 OCT 06 OCT}; > say for map ucfirst lc, split q{ }, $line;' Period 13 Oct 06 Oct $

I hope this is of interest.

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^3: regexp wizardry needed
by Kenosis (Priest) on Jan 26, 2013 at 00:44 UTC

    I'm not sure why you are going with two maps...

    I didn't think of it, so this is certainly of interest. Greatly appreciate you sharing this, JohnGG!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-23 08:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found