Problem 44. Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32).
Input a = ' singular value decomposition ' Output b is 'singular value decomposition'
Solution Stats
Problem Comments
-
4 Comments
Test #5 seems false:
I guess "a = sprintf('\ttab in front, space at end ');" should be a = '\ttab in front, space at end '.
Besides, tab is ASCII 9 (not 32).
@Franck..use isspace function. There is a difference between whitespace and tab space! BTW strtrim removes both white and tab space !
pretty easy
This problem should probably contain a test with only spaces as well. That requires solutions to be much more robust.
Solution Comments
Show commentsProblem Recent Solvers2410
Suggested Problems
-
Remove all the words that end with "ain"
2297 Solvers
-
3153 Solvers
-
The Answer to Life, the Universe, and Everything
528 Solvers
-
Sum of first n positive integers
581 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
378 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!