Text.Replace
통사론
Text.Replace(text as nullable text, old as text, new as text) as nullable text
소개
텍스트 값 text
의 모든 텍스트 값 old
를 텍스트 값 new
로 대체한 결과를 반환합니다. 이 함수는 대/소문자를 구분합니다.
예제 1
문장의 모든 "the"를 "a"로 바꿉니다.
사용량
Text.Replace("the quick brown fox jumps over the lazy dog", "the", "a")
출력
"a quick brown fox jumps over a lazy dog"