ommiting blanks in code
1 view (last 30 days)
Show older comments
how do i write a code sequence omitting any trailing and leading blanks
0 Comments
Answers (1)
Oleg Komarov
on 23 May 2012
Example:
str = ' some blanks here and there ';
str = strtrim(str)
str =
some blanks here and there
str([1,end])
ans =
se
0 Comments
See Also
Categories
Find more on Characters and Strings 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!