다음을 통해 공유


Replacer.ReplaceText

통사론

Replacer.ReplaceText(text as nullable text, old as text, new as text) as nullable text

소개

원래 textold 텍스트를 new 텍스트로 교체합니다. 이 교체기 함수는 List.ReplaceValueTable.ReplaceValue에서 사용할 수 있습니다.

예제 1

"hEllo world" 문자열에서 텍스트 "hE"를 "He"로 바꿉니다.

사용량

Replacer.ReplaceText("hEllo world", "hE", "He")

출력

"Hello world"