Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^6: Change decimal point temporarily

by lima1 (Curate)
on Aug 03, 2010 at 00:32 UTC ( [id://852574]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Change decimal point temporarily
in thread Change decimal point temporarily

Hm, It seems to work if you use locale:
perl -we 'use POSIX; use locale; setlocale LC_NUMERIC, "fr_FR"; $x = " +123,45"; $x+=0.1; print $x; setlocale LC_NUMERIC, ""; $x += 0.1; prin +t $x;'
Update: this does not work:
perl -we 'use POSIX; use locale; setlocale LC_NUMERIC, "fr_FR"; $x = " +123,45"; print $x; setlocale LC_NUMERIC, ""; $x += 0.1; print $x;'
So what I do now is to add 0 if it looks_like_number() and everything works fine. At least what I've tested until now...

Replies are listed 'Best First'.
Re^7: Change decimal point temporarily
by ikegami (Patriarch) on Aug 03, 2010 at 02:40 UTC

    ah! In that case,

    (my $tmp = $s) =~ s/,/./; $s = $tmp if looks_like_numbers($tmp);

    You'd be better of specifying which columns are numeric, though. Text::CSV_XS can even take advantage of that information if you tell it (via types).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://852574]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (8)
As of 2024-04-23 16:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found