in reply to regexp wizardry needed
I added the correct HTML tags to the post to make it easier to get help. I am using Perl version 5.10
$lines2 = " PERIOD 13 OCT 06 OCT"; $lines2 =~ /\d\d \w\w\w/g; $lines2 =~ s/(\d\d) (\w\w\w)/"\u\L$2 " . ($1 + 0)/eg; $lines2 =~ /(\w\w\w \d\d) \s+ (\w\w\w \d\d)/; print "dates: $1 and $2 \n"; #this line only works with 5.14. #push (@date, map { s/(\d\d) (\w\w\w)/"\u\L$2 " . ($1 + 0)/er } $lines +2 =~ /\d\d \w\w\w/g); push (@date, $1); push (@date, $2); $date[0] = $date[0]. ", ". $currentyear; $date1 = $date1. ", ". $currentyear;
Output:
dates: 06 and OCT
I need it to be dates: Oct 06 and Oct 13
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: regexp wizardry needed
by Corion (Patriarch) on Jan 25, 2013 at 17:13 UTC | |
by Anonymous Monk on Jan 25, 2013 at 18:03 UTC | |
by AnomalousMonk (Archbishop) on Jan 26, 2013 at 05:12 UTC | |
|
Re^2: regexp wizardry needed
by LanX (Saint) on Jan 25, 2013 at 18:50 UTC |