regexp command expr(?!test) assertion fail
Ältere Kommentare anzeigen
While using regexp command in following example :

I am expecting result to be 'Retiring' 'lovable' 'runtastic' but instead I am getting the following result:

Can someone please explain why is it so?
Antworten (1)
Walter Roberson
am 19 Sep. 2020
0 Stimmen
Commencement matches \w* because it all word forming characters. It is followed by something that is not 'ment ' because the space after Commencement is not 'm'.
3 Kommentare
Satyam Agrawal
am 19 Sep. 2020
madhan ravi
am 19 Sep. 2020
regexprep(str, '.*(ment)','')
Satyam Agrawal
am 19 Sep. 2020
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!