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
@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 Solvers2452
Suggested Problems
-
Remove the polynomials that have positive real elements of their roots.
1705 Solvers
-
given 3 sides, find area of this triangle
807 Solvers
-
Find the sum of the elements in the "second" diagonal
1160 Solvers
-
Matrix indexing with two vectors of indices
732 Solvers
-
Find a subset that divides the vector into equal halves
391 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!