Replacer.ReplaceText
통사론
Replacer.ReplaceText(text as nullable text, old as text, new as text) as nullable text
소개
원래 text
의 old
텍스트를 new
텍스트로 교체합니다. 이 교체기 함수는 List.ReplaceValue
및 Table.ReplaceValue
에서 사용할 수 있습니다.
예제 1
"hEllo world" 문자열에서 텍스트 "hE"를 "He"로 바꿉니다.
사용량
Replacer.ReplaceText("hEllo world", "hE", "He")
출력
"Hello world"