How to find specific text in a string?
Ältere Kommentare anzeigen
Hello,
I have the following text:
"abs(3).def(5).hhh(11)"
Is there an easy way for search for all the locations with "(" - number - ")".
I mean, all the places where there is a number between parenthesis.
I've try to use regexp but it was too complicate for me to understand how exactly it should be written.
Thanks.
1 Kommentar
Fangjun Jiang
am 4 Apr. 2022
regular expression makes you relax :)
Akzeptierte Antwort
Weitere Antworten (1)
Fangjun Jiang
am 4 Apr. 2022
0 Stimmen
a="abs(3).def(5).hhh(11)";
regexp(a,'(\d+)')
Kategorien
Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!