Extract number from file name

조회 수: 14 (최근 30일)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2019년 11월 4일
편집: Stephen23 2019년 11월 5일
There are several files like this: K10_0.0.json, Mig_Thresh_2.0.json, K_5_6.5.json, WC_0.00051.json, ... and I need to extract the number after the last underline which would be 0.0 for K10_0.0.json, 2.0 for Mig_Thresh_2.0.json, 6.5 for K_5_6.5.json and 0.00051 for WC_0.00051.json. In other words, I need to get the number after the last underline (_).
Any idea how to do that?

채택된 답변

David Hill
David Hill 2019년 11월 4일
Look at regexp function. I assume your input is a string array and you want a string array output.
a='K_5_6.5.json';
b=regexp(a,'(?<=[_])\d*[.]?\d*','match');
c=cell2mat(b(end));%c='6.5'
  댓글 수: 5
Guillaume
Guillaume 2019년 11월 4일
편집: Guillaume 2019년 11월 4일
  • (?<=xxx) is a look behind expression. Here it means that the match must be preceded by xxx
  • the xxx here is [_], [] is used to specify a group of characters to match. I'm not sure why David used that, it's not needed since there's only one character, the _.
  • \d matches any digit (so characters '0' to '9'.
  • [.] matches a dot. Again, the [] is unnecessary, however . when not inside brackets must be escaped with \., the ? makes it optional
So, a clearer expression would be:
regexp(a,'(?<=_)\d+\.?\d*','match') %match must follow _ and is made from 1 or mode digits followed by an optional . and more digits
Note that all the above is explained in the documentation of regexp
You could also use captures instead of look behind:
regexp(a, '_(\d+\.?\d*)', 'tokens')
Stephen23
Stephen23 2019년 11월 5일
편집: Stephen23 2019년 11월 5일
Note that this answer does not do what the question requested. The question clearly states "I need to get the number after the last underline", but this answer gets the number after every underline, thus it clearly fails your "6.5 for K_5_6.5.json" example by returning both numbers:
>> a = 'K_5_6.5.json';
>> regexp(a,'(?<=[_])\d*[.]?\d*','match')
ans =
'5' '6.5'
Guillaume improved the regular expression, but did not change this behavior.

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

추가 답변 (1개)

Stephen23
Stephen23 2019년 11월 4일
>> C = {'K10_0.0.json', 'Mig_Thresh_2.0.json', 'K_5_6.5.json', 'WC_0.00051.json'};
>> [~,N] = cellfun(@fileparts,C,'uni',0);
>> D = regexp(N,'\d+\.?\d*$','match','once');
>> V = str2double(D)
V =
0.00000 2.00000 6.50000 0.00051

카테고리

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