إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
Syntax
Text.ReplaceRange(
text as nullable text,
offset as number,
count as number,
newText as text
) as nullable text
About
Returns the result of removing a number of characters, count, from text value text beginning at position offset and then inserting the text value newText at the same position in text.
Example 1
Replace a single character at position 2 in text value "ABGF" with new text value "CDE".
Usage
Text.ReplaceRange("ABGF", 2, 1, "CDE")
Output
"ABCDEF"