HOW I CAN REMOVE THE SPACE
Ältere Kommentare anzeigen
how i can remove the spacing from strings like this
i have this string ( STEP NOT OF PETS ) and i want it to be like this ( STEPNOTOFPETS )
2 Kommentare
Walter Roberson
am 23 Jun. 2019
Character vector? Or string() object?
ahmad abusara
am 23 Jun. 2019
Antworten (2)
madhan ravi
am 23 Jun. 2019
regexprep(yourstring,' ','')
1 Kommentar
madhan ravi
am 23 Jun. 2019
Also you could use strrep() in place of regexprep().
Walter Roberson
am 23 Jun. 2019
yourstring(yourstring == ' ') = '' ;
Kategorien
Mehr zu String Parsing 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!