INS

INS


INPUTTRAP ... GOTO Index Level INSERT
Syntax INS string.expression BEFORE dynamic.array< ac.expression {, vc.expression {, sc.expression}} >
Category BASIC
Type Statement
Description provides an alternate to the "insert" function, for inserting a string expression into a dynamic array.
Options
See Also REPLACE ac.expression vc.expression DEL sc.expression INSERT LOCATE
Example x<1> = "a"
x<2> = "c"
ins "b" before x<2>
print x

a^b^c
Warnings
Compatibility D3 7.0 AP
INPUTTRAP ... GOTO Index Level INSERT