How can I find and replace tab or space characters?
조회 수: 37 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2012년 1월 17일
편집: Bradley Stiritz
2014년 5월 9일
I have a string, and I would like to find and replace the tabs and spaces with other characters. However, the STRFIND or STRREP functions don't seem to work.
채택된 답변
MathWorks Support Team
2012년 1월 17일
The main method to replace tabs and spaces in MATLAB is to use regular expressions. Specifically, the REGEXPREP command is able to find tabs or spaces and replace them with any string. For example, to replace tabs with spaces in a string:
updatedString = regexprep(originalString, '\t', ' ');
댓글 수: 1
Bradley Stiritz
2014년 5월 9일
편집: Bradley Stiritz
2014년 5월 9일
Hi, I'm not sure your proposed method works on non-printing ASCII tab characters. I also need to programmatically replace ASCII tab characters (not visible '\t' sequences).
Do you know please how I can accomplish this? Any help appreciated. Thanks for your consideration.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!