Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: Sorting (GRT) and locale issues

by ikegami (Patriarch)
on Nov 15, 2007 at 05:38 UTC ( [id://650922]=note: print w/replies, xml ) Need Help??


in reply to Re: Sorting (GRT) and locale issues
in thread Sorting (GRT) and locale issues

According to your locale, a byte with value 97 should be sorted before a byte with value 66.
That's fine if you're sorting iso-latin-1 text. It means "a" will be sorted earlier than "B".
That's not fine if you're sorting numbers in their native format.

@a = map unpack('N', $_), sort map pack('N', $_), 65, 66, 67, 97, 98, 99; => 97, 65, 98, 66, 99, 67 using "use locale" on your system. a A b B c C => 65, 66, 67, 97, 98, 99 using "no locale". A B C a b c

So yeah, you'd have to turn it off when it's comparing bytes representing numbers. But since you want it on for when it's comparing bytes representing text, you have a problem.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-26 04:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found