필터 지우기
필터 지우기

Legacy implementation of strtrim prior to R2016a

조회 수: 2 (최근 30일)
sst
sst 2016년 8월 30일
편집: Guillaume 2016년 8월 31일
It looks like strtrim changed in R2016a to not trim significant whitespace characters. However, I have a need for a legacy implementation. Is it possible to provide one that works in R2016a, but also trims significant whitespace characters?

채택된 답변

Guillaume
Guillaume 2016년 8월 30일
regexp(yourstring, '(?<=^\W*)\w.*?(?=\W*$)', 'match', 'once')
should do the trick
  댓글 수: 4
sst
sst 2016년 8월 31일
The first implementation using regexp turned out to be the fastest alternative approach, though still well over ten times slower than the built-in strtrim. I was really hoping TMW would have provided a 'legacy' option for strtrim, like they did for functions like ismember, union, and intersect :)
Guillaume
Guillaume 2016년 8월 31일
편집: Guillaume 2016년 8월 31일
First of all, I made a mistake in the regex, it should have been \s instead of \W and \S instead of \w (yes upper and lower case should be swapped as well), so:
regexp(yourstring, '(?<=^\s*)\S.*?(?=\s*$)', 'match', 'once')
This will not speed up the regex, the slow down is probably caused by the non-greedy all capturing star .*? followed by the greedy capturing \s*, which causes a lot of backtracking.
However, this regex will do the same and should be significantly faster:
regexp(yourstring, '(?<=^\s*)\S.*\S(?=\s*$)', 'match', 'once')
As for a legacy option for strtrim, this is something you would have to ask Mathworks through a service request.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Holidays / Seasons에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by