Whats wrong with this regexpr?  

$string = "                            Report Total:    2300,150.17
1352,768.15    554,392.38    277,186.72     84,321.84     31,481.08";


if ($string=~ m/Report Total:\s
    ([\d,.]+)\s
    ([\d,.]+)\s
    ([\d,.]+)\s
    ([\d,.]+)\s
    ([\d,.]+)\s
    ([\d,.]+)/x){
    print "$&\n" ;
}

Paul Kraus
Network Administrator
PEL Supply Company
216.267.5775 Voice
216-267-6176 Fax
www.pelsupply.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to