StrrepLikeRegexprep

버전 1.0.0.0 (857 Bytes) 작성자: Michael Robbins
STRREP, but uses the input and output format of REGEXPREP
다운로드 수: 2K
업데이트 날짜: 2005/6/3

라이선스 없음

STRREPLIKEREGEXPREP Replace string with another.
This function uses STRREP, but uses the input and output format of REGEXPREP so it can be easily substituted.

S = STRREPLIKEREGEXPREP(STRING,SEARCH,REPLACE) replaces all occurrences of the the search string, SEARCH, in string, STRING, with the string,% REPLACE. The new string is returned. If no matches are found STRREPLIKEREGEXPREP returns STRING unchanged.

If STRING is a cell array of strings, STRREPLIKEREGEXPREP returns a cell array of strings replacing each element of STRING individually.

If SEARCH is a cell array of strings, STRREPLIKEREGEXPREP replaces each element of SEARCH sequentially.

If REPLACE is a cell array of strings, then SEARCH must be a cell array of strings with the same number of elements. STRREPLIKEREGEXPREP will replace each element of SEARCH sequentially with the corresponding element of REPLACE.

Example:
InputStr = {'we the people,','in oder to form','a more perfct'}
SearchStr = {'we','oder','perfct'};
ReplaceStr = {'We','order','perfect'};
StrrepLikeRegexprep(InputStr, SearchStr, ReplaceStr)
returns {'We the people,','in order to form','a more perfect'}

인용 양식

Michael Robbins (2024). StrrepLikeRegexprep (https://www.mathworks.com/matlabcentral/fileexchange/7766-strreplikeregexprep), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0