DEL$ function
Purpose: This function allows the deletion of a substring from a string.
Syntax: RetStr$ = DEL$(MainStr$, Position%, NumChars%) Parameters:
|
Example:
DIM myMainStr$ DIM str1$ str1$ = "ABCdefGHI" myMainStr$ = DEL$(str1$,4,3) PRINT myMainStr$ PRINT LEN(myMainStr$)