ommiting blanks in code

how do i write a code sequence omitting any trailing and leading blanks

Answers (1)

Example:
str = ' some blanks here and there ';
str = strtrim(str)
str =
some blanks here and there
str([1,end])
ans =
se

Tags

Asked:

on 23 May 2012

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!