Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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"