Sorting an array of strings based on number pattern

조회 수: 103 (최근 30일)
Niels
Niels 2015년 7월 14일
편집: Stephen23 2021년 4월 18일
I'm looking for an efficient way to solve the following issue:
Typically I read out all files in a directory that match a certain pattern by means of the dir function:
dirFiles = dir('Common_*_common.ext');
fileNames= {dirFiles.name};
This does what it is supposed to do and gives me a nice cell array with files I need to load.
However, the pattern is of the format 0, 1, 2, ..., 8, 9, 10 and the order of my fileNames comes out as 0, 10, 1, ..., 7, 8, 9. Unfortunately, changing the filenames themselves to 00, 01, 02, ..., 10 is not an option. Is there an efficient way to sort such arrays to the correct format?
Of course this should also hold when the sequence increases to larger numbers (e.g. 0, 1, 2, ..., 29, 30, 31).
  댓글 수: 1
Stephen23
Stephen23 2016년 2월 22일
편집: Stephen23 2021년 4월 18일
You could download my FEX submission natsortfiles. The function natsortfiles does not perform a naive natural-order sort, but also sorts the filenames and file extensions separately so that the file extension period character does not influence the sort output.
>> S = dir('*.txt');
>> S.name
ans =
'1.txt'
ans =
'10.txt'
ans =
'2.txt'
>> S = natsortfiles(S); % alphanumeric sort by filename
>> S.name
ans =
'1.txt'
ans =
'2.txt'
ans =
'10.txt'

댓글을 달려면 로그인하십시오.

채택된 답변

Niels
Niels 2015년 7월 14일
편집: Niels 2015년 7월 14일
Ok, I should've searched better...
Problem solved with a PotW tool by Stephen Cobeldick.

추가 답변 (1개)

Jos (10584)
Jos (10584) 2015년 7월 14일
Here is a way:
% create some example names
filenames = {'xx_1_yy.txt','xx_8_yy.txt','xx_10_yy.txt','xx_2_yy.txt'}
sort(filenames) % wrong!
% extract the numbers
filenum = cellfun(@(x)sscanf(x,'xx_%d_yy.txt'), filenames)
% sort them, and get the sorting order
[~,Sidx] = sort(filenum)
% use to this sorting order to sort the filenames
SortedFilenames = filenames(Sidx)
  댓글 수: 2
Niels
Niels 2015년 7월 14일
Thanks. Also does the job nicely.
I actually prefer your solution over the tool I found, as I can add that in just 2 additional lines of code. Unfortunately I do not seem to be able to change my accepted answer anymore...
Stephen23
Stephen23 2016년 2월 22일
편집: Stephen23 2016년 2월 22일
@Niels: this is a good solution, but it works only for this filename format: any change in filename format will mean that you need to change your code. For multiple numbers in one name, or sorting by characters and numeric values it gets quite complicated. That is why I wrote my FEX submission natsortfiles, which naturally deals with all of these situations. You can change the filename format and natsortfiles will still work.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by