Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi All,

I wasn't sure if there is an easy way to do what I am trying to do and I was not able to find anything on google.

When I use excel I am able to sort by one column and then by another column and so on, but with perl instead, of course...

For example I have a two-dimensional array '@test' that looks like the following.

1  3  5  6  2
3  4  5  6  7
1  2  3  4  5
5  6  7  8  8
1  2  3  4  5
2  2  2  2  2
1  1  2  4  5
2  3  4  5  6

I would like to make a sub that would allow me to pass in the array and the columns that I want to sort and the the sub output the sorted array by to @test.

Basically pass @test into the sub and sort by column 1 then 2 then 4.

&sortSub(@test, 1, 2, 4); after the sort

1  1  2  4  5
1  2  3  4  5
1  2  3  4  5
1  3  5  6  2
2  2  2  2  2
2  3  4  5  6
3  4  5  6  7
5  6  7  8  8

Does anyone know of an easy way to do this? Does anyone happen to have a routine that already does this?


After all this is over, all that will really have mattered is how we treated each other.

In reply to How would I sort a two-dimensional array by multiple columns? by dbmathis

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 surveying the Monastery: (3)
As of 2024-04-26 02:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found