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
Show
1 older comment
Selvaraaju Murugesan
on 15 Jan 2013
@Franck..use isspace function. There is a difference between whitespace and tab space! BTW strtrim removes both white and tab space !
Sanzhar Askaruly
on 3 Jul 2019
pretty easy
Rik
on 13 Jan 2021
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 Solvers2462
Suggested Problems
-
given 3 sides, find area of this triangle
808 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1212 Solvers
-
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
1933 Solvers
-
794 Solvers
-
The sum of the numbers in the vector
619 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!