Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Sorting files by 3 numbers in the name

by BrowserUk (Patriarch)
on May 26, 2017 at 13:58 UTC ( [id://1191284]=note: print w/replies, xml ) Need Help??


in reply to Sorting files by 3 numbers in the name

#! perl -slw use strict; my @files = qw( ASR0005336_8950_ETSTexas_EOC052017P_0517_Candidate_RRD_178904_01_0 +2_Spr17_Initial_201705040952_41044.zip ASR0004520_8960_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_04_0 +4_Spr17_Initial_201705040952_41045.zip ASR0004994_8958_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_02_0 +4_Spr17_Initial_201705040951_41043.zip ASR0005336_8950_ETSTexas_EOC052017P_0517_Candidate_RRD_178904_02_0 +2_Spr17_Initial_201705040952_41044.zip ASR0005154_8957_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_01_0 +4_Spr17_Initial_201705040951_41042.zip ASR0005336_8959_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_03_0 +4_Spr17_Initial_201705040952_41044.zip ASR0005336_8972_ETSTexas_EOC052017P_0517_Candidate_RRD_178902_01_0 +1_Spr17_Initial_201705040952_41044.zip ); print for map unpack( 'x16 a*', $_ ), sort map pack( 'NNNNa*', (m[_(\d ++)]g)[0,2,3,4], $_ ), @files; __END__ [14:56:37.78] C:\test>junk39 ASR0005336_8950_ETSTexas_EOC052017P_0517_Candidate_RRD_178904_01_02_Sp +r17_Initial_201705040952_41044.zip ASR0005336_8950_ETSTexas_EOC052017P_0517_Candidate_RRD_178904_02_02_Sp +r17_Initial_201705040952_41044.zip ASR0005154_8957_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_01_04_Sp +r17_Initial_201705040951_41042.zip ASR0004994_8958_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_02_04_Sp +r17_Initial_201705040951_41043.zip ASR0005336_8959_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_03_04_Sp +r17_Initial_201705040952_41044.zip ASR0004520_8960_ETSTexas_EOC052017P_0517_Candidate_RRD_178901_04_04_Sp +r17_Initial_201705040952_41045.zip ASR0005336_8972_ETSTexas_EOC052017P_0517_Candidate_RRD_178902_01_01_Sp +r17_Initial_201705040952_41044.zip

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority". The enemy of (IT) success is complexity.
In the absence of evidence, opinion is indistinguishable from prejudice. Suck that fhit

Replies are listed 'Best First'.
Re^2: Sorting files by 3 numbers in the name
by AnomalousMonk (Archbishop) on May 26, 2017 at 16:24 UTC

Log In?
Username:
Password:

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

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

    No recent polls found