STRNUMERIC

Sorts a list of files (or strings) in a cell array based on numeric characters

You are now following this Submission

STRNUMERIC sorts a cell array of strings in numeric order based on numbers embedded within each string.

Example:

>> str = {'Test.txt'
'Test_4_Case_1_Day_10_34.txt'
'Test_3_Case_1_Day_10_34.txt'
'Test_2_Case_1_Day_9.txt'
'Test_2_Case_1_Day_10_34.txt'
'Test_2_Case_001_Day_10_234.txt'
'Test_2_Case_001_Day_10.txt'
'Test_1_Case_33_Day_1.txt'};

>> strnumeric(str)

ans =

'Test.txt'
'Test_1_Case_33_Day_1.txt'
'Test_2_Case_1_Day_9.txt'
'Test_2_Case_001_Day_10.txt'
'Test_2_Case_1_Day_10_34.txt'
'Test_2_Case_001_Day_10_234.txt'
'Test_3_Case_1_Day_10_34.txt'
'Test_4_Case_1_Day_10_34.txt'

Cite As

Sww (2026). STRNUMERIC (https://www.mathworks.com/matlabcentral/fileexchange/44968-strnumeric), MATLAB Central File Exchange. Retrieved .

Acknowledgements

Inspired: SOLLAR CHIMNEY DISALINATION APPARATUS

General Information

MATLAB Release Compatibility

  • Compatible with any release

Platform Compatibility

  • Windows
  • macOS
  • Linux
Version Published Release Notes Action
1.0.0.0