Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^8: perllocale weirdness, bug, or...?

by Krambambuli (Curate)
on Oct 22, 2010 at 12:20 UTC ( [id://866794]=note: print w/replies, xml ) Need Help??


in reply to Re^7: perllocale weirdness, bug, or...?
in thread perllocale weirdness, bug, or...?

Thanks for the tip - I really hoped it might solve the issue, but unfortunately it does not.

For the file test.txt (TAB separated fields) being
a_2 2 a2 1
I still get
$ sort -k 1,1 test.txt | cut -f 1 a2 a_2
whereas when there is no second field then the result is reversed,
a_2 a2
Looks like the problem 'survives'.
---

Replies are listed 'Best First'.
Re^9: perllocale weirdness, bug, or...?
by choroba (Cardinal) on Oct 22, 2010 at 12:33 UTC
    Looks like two level sort: on the first level, it ignores the _, but if the strings are different only thanks to the underscore, it is used in the second level.
    $ echo $'a_2\t2\na2\t1' | sort -k1 a2 1 a_2 2 $ echo $'a_2\t2\na2\t1' | sort -k1,1 a2 1 a_2 2 $ echo $'a2\t2\na_2\t1' | sort -k1,1 a2 2 a_2 1 $ echo $'a2\t2\na_2\t1' | sort -k1 a_2 1 a2 2

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-19 20:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found