delchars()

Function group Execute on client Platform(s)
String YES All

Syntax

delchars(string,position[,length=1])

Description

Returns the string generated by deleting the substring at the specified 1-based position and length from string. If length extends past the end of the string it just deletes to the end.

Example

Calculate lString as  delchars('String',2,2)
# lString is now 'Sing'