Very simple question about strings

조회 수: 1 (최근 30일)
Sameer
Sameer 2014년 8월 1일
편집: Stephen23 2015년 5월 27일
Hello all
I have a cell containing stings something like this:
A={'SI1','SI12','SI13','SI2'};
I have to arrange these strings either in ascending order or in descending based on the numbers they are having. Can anyone please guide?
Regards
  댓글 수: 1
Stephen23
Stephen23 2015년 5월 27일
편집: Stephen23 2015년 5월 27일
You can simply use my FEX submission natsort, which performs a natural order sort on a cell array of strings:
>> A = {'SI1','SI12','SI13','SI2'};
>> natsort(A)
ans =
'SI1' 'SI2' 'SI12' 'SI13'

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

채택된 답변

David Young
David Young 2014년 8월 1일
"According to the numbers" is ambiguous.
This sorts the strings in ascending order, making the digit in position 3 more significant than the digit in position 4, etc.:
Asorted = sort(A);
Your example is already sorted by this criterion.
This, on the other hand, makes the last digit the least significant, regardless of how many digits there are. It assumes that there are always 2 characters to ignore at the start:
nums = cellfun(@(s) str2double(s(3:end)), A);
[~, indexes] = sort(nums);
Asorted = A(indexes);

추가 답변 (1개)

Honglei Chen
Honglei Chen 2014년 8월 1일

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by