학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
Text.Replace(text as nullable text, old as text, new as text) as nullable text
텍스트 값 text
의 모든 텍스트 값 old
를 텍스트 값 new
로 대체한 결과를 반환합니다. 이 함수는 대/소문자를 구분합니다.
문장의 모든 "the"를 "a"로 바꿉니다.
사용량
Text.Replace("the quick brown fox jumps over the lazy dog", "the", "a")
출력
"a quick brown fox jumps over a lazy dog"
학습
모듈
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.