HOW I CAN REMOVE THE SPACE
Show older comments
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 Comments
Walter Roberson
on 23 Jun 2019
Character vector? Or string() object?
ahmad abusara
on 23 Jun 2019
Answers (2)
madhan ravi
on 23 Jun 2019
regexprep(yourstring,' ','')
1 Comment
madhan ravi
on 23 Jun 2019
Also you could use strrep() in place of regexprep().
Walter Roberson
on 23 Jun 2019
yourstring(yourstring == ' ') = '' ;
Categories
Find more on String Parsing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!