delete a space blank in a cell array
5 views (last 30 days)
Show older comments
Skander Marouani
on 19 Mar 2018
Answered: vijaya lakshmi
on 22 Mar 2018
Hi everyone, i have this cell " MTA-M-001" and i when i'm comparing it with "MTA-M-001" i get a logical 0 so i want to get rid of the space blank
0 Comments
Accepted Answer
vijaya lakshmi
on 22 Mar 2018
Hi Skander,
strtrim(" MTA-M-001")
Alternatively, if u storing it as char,then use
c=' MTA-M-001'
c=c(~isspace(c))
0 Comments
More Answers (0)
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!