Regular expression for 1*1 cell array
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
raghavendra kandukuri
am 12 Nov. 2019
Kommentiert: Adam Danz
am 12 Nov. 2019
Hello All,
I was trying to find the regular expression for a 1*1 cell array, the array looks somethig like this:
{'<string_attribute name="country"><s>CHINA5</s></string_attribute>'}
I need the country name string in above example, which is CHINA5, rest of the array would be same every time except the country string.
Any help is higley appreciated!
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Matt J
am 12 Nov. 2019
Bearbeitet: Matt J
am 12 Nov. 2019
c='<string_attribute name="country"><s>CHINA5</s></string_attribute>';
out=extractBetween(c,'<s>','</s>');
>> out{1}
ans =
'CHINA5'
2 Kommentare
Adam Danz
am 12 Nov. 2019
This is definitley the better answer for r2016b and later.
I keep forgetting about that family of string functions introduced in that release.
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!