in reply to
REGEX Frustration
Since it's tab delimited, you could also use split to extract the amount field:
my $amt = ((split(/\t/,$data))[2]);
[download]
mr.nick
...
Comment on
Re: REGEX Frustration
Download
Code
In Section
Seekers of Perl Wisdom