Text.ReplaceRange
통사론
Text.ReplaceRange(text as nullable text, offset as number, count as number, newText as text) as nullable text
소개
텍스트 값 text
에서 offset
위치부터 count
개의 문자를 제거하고 text
의 같은 위치에 텍스트 값 newText
을 삽입한 결과를 반환합니다.
예제 1
텍스트 값 "ABGF"의 위치 2에 있는 단일 문자를 새 텍스트 값 "CDE"로 대체합니다.
사용량
Text.ReplaceRange("ABGF", 2, 1, "CDE")
출력
"ABCDEF"