ERASE

Format

ERASE( src , pos , len )

Function

Arguments

src
The string from which you want to delete the specified part.
pos
The character position to start deleting from (start of string = 0)
len
The number of characters to delete. If the total size is exceeded, the return value is always an empty string

Return value

Related

Version

Example

_str = 'SakuraMayuraNekoko'
ERASE( _str, 4, 12 ) // "Sakuko" is output