Extracting second number after comma within parenthesis
古いコメントを表示
I have a string
"Toc(Clock Data Ref Time) : 0x91E6 (37350,5.976000e+005 s)";
I am looking to extract only contents after comma from the second parenthesis.
So, the required would be 5.976000e+005.
My code is
XX="Toc(Clock Data Ref Time) : 0x91E6 (37350,5.976000e+005 s)";
TOC=strrep(XX,'Toc(Clock Data Ref Time)','');
TOC=regexp(TOC, '(?<=\()[^)]*(?=\))', 'match')
Which returns 37350,5.976000e+005 s.
But how to extract numbers after comma?
Thank you.
採用された回答
その他の回答 (3 件)
dpb
2020 年 1 月 20 日
Slightly modified version following IA's direction using newer string parsing functions that can do much of what regexp expressions are often used for--
XX = "Toc(Clock Data Ref Time) : 0x91E6 (37350,5.976000e+005 s)";
TOC=str2double(extractBetween(XX,',',' '));
>> TOC
TOC =
597600
>>
2 件のコメント
Image Analyst
2020 年 1 月 20 日
Thanks for letting us know about that function. +1 vote. I'd never heard of it.
Seems like they really beefed up and simplified the string handling with extractBetween(), endsWith(), startsWith(), etc. About time. regexp() is just too complicated for most people.
I discovered them when exploring the new strings class back when it was introduced.
They're not that easy to find on their own, however, the "See Also" links don't include them in many logical places like under any of the historical strfind strcmp routines nor even with string itself. They're listed under a topic "Search and Replace Text" but it's a long and arduous road to even get to that link from top level.
I've made the suggestion documentation needs more links to help make them visible but so far hasn't made it to the top of the list (which I reckon must be miles long)...
Image Analyst
2020 年 1 月 20 日
If your format is fixed (the same every time), you can do it much, much more simply, and less cryptically, by avoiding regexp() and simply using indexing:
XX = "Toc(Clock Data Ref Time) : 0x91E6 (37350,5.976000e+005 s)";
% Convert from string to character array.
XX = char(XX);
% Extract known, fixed part of string from between 47 and 59, inclusive.
TOC = XX(47:59) % This is a character array. Use str2double() if you want a number.
4 件のコメント
SATINATH DEBNATH
2020 年 1 月 21 日
Image Analyst
2020 年 1 月 21 日
Then try it this way:
XX = "Toc(Clock Data Ref Time) : 0x91E6 (37350,5.976000e+005 s)";
% Convert from string to character array.
XX = char(XX);
% Find comma and ' s'. Assume they will definitely be there. Check if in doubt.
commaLocation = strfind(XX, ',')
sLocation = strfind(XX, ' s')
% Extract between those two locations.
TOC = XX((commaLocation+1):(sLocation-1))
SATINATH DEBNATH
2020 年 1 月 21 日
Image Analyst
2020 年 1 月 21 日
You gave XX as a string class variable, not as a character array, so that's why I had to use XX=char(XX). If your data is already a character array just delete that line because (for some reason) indexing doesn't seem to work with strings. Otherwise, attach XX in a .mat file if you're still interested in pursuing the strfind() method.
save('answers.mat', 'XX');
Stephen23
2020 年 1 月 20 日
Simply match all text from the comma to the whitespace:
>> str = 'Toc(Clock Data Ref Time) : 0x91E6 (37350,5.976000e+005 s)';
>> regexp(str,'(?<=,)\S+','match')
ans =
'5.976000e+005'
3 件のコメント
dpb
2020 年 1 月 20 日
Precisely what the extractBetween function does... :)
SATINATH DEBNATH
2020 年 1 月 21 日
カテゴリ
ヘルプ センター および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!