regexprep() skip first occurrence
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
newbie9
am 13 Mär. 2019
Kommentiert: newbie9
am 13 Mär. 2019
Is there a way to use regexprep() but skip the first occurrence of a space?
mystring = 'this is my string';
desired return:
mystring2 = 'this ismystring';
0 Kommentare
Akzeptierte Antwort
Akira Agata
am 13 Mär. 2019
How about using regexp to find the position of spaces, and delete 2nd~Nth spaces? Like:
mystring = 'this is my string';
pos = regexp(mystring,'\s');
mystring(pos(2:end)) = [];
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!