INSERT$
INSERT$ requires 3 parameters. The first two parameters are string constants or string variables. The third parameter is the position in the second string at which the first string is inserted.
Example:
F$='0.95CH4'
G$=insert$('*',F$,5)
{Solution:
F$='0.95CH4'
G$='0.95*CH4'
}
Return to String Functions