in reply to Need a regex

If this is the general format of the lines you need to extract data from, it appears what you're looking for is just the third field delimited by whitespace. This should work:
my $string = "USD_ABD DOLARI 608,132 611,064 607,70 +6 611,981 1.0 1.0"; my $value = (split /\s+/, $string)[2];
Which leaves $value with 608,132.

Replies are listed 'Best First'.
RE: Re: Need a regex
by sinan (Sexton) on Jun 09, 2000 at 01:26 UTC
    Thanks a lot, friar plaid!!!

    This really saved me a lot of trouble.
    Cheers,
    Sinan