ERASE†
Format†
ERASE( src , pos , len )
Function†
- Deletes the specified portion of a string.
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†
- If successful, the string after deletion
Related†
Version†
- YAYA: Available from the start
- Available in AYA5.8
- Negative value for pos in Tc539-3
Example†
_str = 'SakuraMayuraNekoko'
ERASE( _str, 4, 12 ) // "Sakuko" is output