how do i write a code sequence omitting any trailing and leading blanks
No products are associated with this question.
Use strtrim()
Example:
str = ' some blanks here and there '; str = strtrim(str)
str = some blanks here and there
str([1,end]) ans = se
0 Comments