Notă
Accesul la această pagină necesită autorizare. Puteți încerca să vă conectați sau să modificați directoarele.
Accesul la această pagină necesită autorizare. Puteți încerca să modificați directoarele.
Syntax
Text.RemoveRange(
text as nullable text,
offset as number,
optional count as nullable number
) as nullable text
About
Returns a copy of the text value text with all the characters from position offset removed. An optional parameter, count can by used to specify the number of characters to remove. The default value of count is 1. Position values start at 0.
Example 1
Remove 1 character from the text value "ABEFC" at position 2.
Usage
Text.RemoveRange("ABEFC", 2)
Output
"ABFC"
Example 2
Remove two characters from the text value "ABEFC" starting at position 2.
Usage
Text.RemoveRange("ABEFC", 2, 2)
Output
"ABC"