Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

regex help 3

Status
Not open for further replies.

travs69

MIS
Dec 21, 2006
1,431
US
Code:
my %month = ( 'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6, 'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' => 10, 'NOV' => 11, 'DEC' => 12);
$col[5] = 'MAY052010';

($c{month}, $c{day}, $c{year}) = $col[5] =~ /(.{3})(\d{2})(\d{4})/;
$c{month} = $month{$c{month}} #or $month{$1}
print "$c{month}\n";

I'd really like to have that done in one line.. just seems like I'm missing something easy.

Thanks

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
I think you're just missing:
Code:
($c{month}, $c{day}, $c{year}) = [red][b]([/b][/red]$col[5] =~ /(.{3})(\d{2})(\d{4})/[red][b])[/b][/red];
 
the regex part works,

but I am having to do the hash convert in the next line.. I'm trying to figure out a way to do it all in one line.

Thanks :)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Given that the date is fixed format, why use a regex at all? Just substring it...

Steve

[small]"Every program can be reduced by one instruction, and every program has at least one bug. Therefore, any program can be reduced to one instruction which doesn't work." (Object::perlDesignPatterns)[/small]
 
Never thought of it truthfully, can you do a substring like a regex and get multiple things back or just run 3 seperate substrings?

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Not sure to understand what you want to do. Assuming this is:
1)extract month,day,year from date
2)if month is in 3 letters, translate it into numeric.
If that is correct, supposing the month would be in 2 figures (when in this version, however your regex is not correct in this case), then you can test the length of the variable to determine which one you have and do
Code:
($c{month},$c{day},$c{year})=(length($col[5])>8?$month{substr($col[5],0,3)}:substr($col[5],0,2),substr($col[5],-6,2),substr($col[5],-4));
If month, when numeric, is in 3 figures, then you can do
Code:
($c{month},$c{day},$c{year})=($col[5]=~/^(\d{3})/?$1:$month{substr($col[5],0,3)},substr($col[5],3,2),substr($col[5],5));
Could not find a solution in one line with regexes, but substr should also be faster.
Of course I assume you don't need any error checking on the sanity of your string...

Franco
: Online engineering calculations
: Magnetic brakes for fun rides
: Air bearing pads
 
Oh, that's what you meant by one line. How about something like:
Code:
($c{month}, $c{day}, $c{year}) = (map {defined $month{$_} ? $month{$_} : $_} $col[5] =~ /(.{3})(\d{2})(\d{4})/);
print "$c{month}\n";
 
Thanks guys.. I'm going to play with that some tonight..

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[noevil]
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top