Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
The underscore (_) comes after the decimals and capital letters using perl's cmp operator but before the lower case letters. If you'd like it to be before numbers, then simply create a custom sort by moving it before:
use strict; use warnings; my @foods = qw(abc abc1 abc2 abc_1 abc_2 abc01_1); # Create a Custom Sort my @sort_char_order = sort map {chr $_} (1..127); # Move '_' to before '0' in your list; my @your_char_order = map {$_ eq '0' ? ('_', '0') : $_ eq '_' ? () : $ +_} @sort_char_order; my $sort_char_order = join '', @sort_char_order; my $your_char_order = join '', @your_char_order; my $trans_word = eval qq{ sub { my \$param = shift; \$param =~ tr/\Q$your_char_order\E/\Q$sort_char_order\E/; return \$param; } }; # Sort by your custom definition my @sorted_foods = map { $_->[0] } sort { $a->[1] cmp $b->[1] } map { [ $_, $trans_word->($_) ] } @foods; print join ' ', @sorted_foods; # abc abc_1 abc_2 abc01_1 abc1 abc2
- Miller

In reply to Re: sorting an array if sting having _ by wind
in thread sorting an array if sting having _ by saiprathapreddy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found