You might want to clarify your requirements a little by providing a few example input filenames and the expected output (contents of your
@TXT array).
I have made a few changes to your script:
- Added use warnings;
- Stored the regex in a variable, $re, to avoid duplication.
- Removed the unnecessary capturing parentheses from the regex; since you are only using $1, you only need 1 set.
- Check $first_number instead of $1. Same for $2.
Here is the code:
use strict;
use warnings;
use File::Copy;
sub files_sort {
my $first_number;
my $second_number;
my $re = qr/(\d+)_\d+_duration_\w+_comptage_\d+.txt$/;
if ($a =~ $re) {
$first_number = $1;
}
if ($b =~ $re) {
$second_number = $1;
}
if ($first_number < $second_number) {
-1
}
elsif ($first_number > $second_number) {
1
}
else {
0
}
}
my @TXT = glob("*.txt");
@TXT = sort files_sort @TXT;
print "$_\n" for @TXT;
Here is the output:
% ls -1 *.txt
A3_output_ZGZ22_03_20061022_duration_200mn_comptage_60.txt
M3_output_ZGZ22_02_20061022_duration_200mn_comptage_60.txt
M3_output_ZGZ22_12_20051022_duration_200mn_comptage_60.txt
M3_output_ZGZ22_12_20061022_duration_200mn_comptage_60.txt
% 689020.pl
M3_output_ZGZ22_02_20061022_duration_200mn_comptage_60.txt
A3_output_ZGZ22_03_20061022_duration_200mn_comptage_60.txt
M3_output_ZGZ22_12_20051022_duration_200mn_comptage_60.txt
M3_output_ZGZ22_12_20061022_duration_200mn_comptage_60.txt
Is this what you expect?
Caveat: you must make sure that all the *.txt files in your directory match your regex.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.