Syntax
$NEWVAR=SUBST$(StartString,placement,ReplaceString,[CharacterCount])
- StartString acts as the full string in which to replace text.
- placement acts as a number that sets the start position to remove text.
- ReplaceString acts as the string that will be replacing the removed text.
- CharacterCount is an optional parameter that chooses how long the removed text will be, if left empty it will be one (I think)
Uses
This can be used in many situations like syntax replacement alongside INSTR.Examples
Str$=SUBST$("Abcd", 2,"dc") 'Abdc Str$=SUBST$("A cd",2,"b",2) 'Abd