$1 from reg expr is equal to 2300,150.17 $org = $1; $org=~s/,//g; Generates 2300150.17. Which is correct.
$org = $1 =~ s/,//g; Generates 17904. Now if I am correct the binding =~ has precedence over =. So it should generate the same output. 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]