insert$()

Inserts source string into destination string at desired position. You can omit the dollar character so you can alternatively write it as insert() .


Syntax:
insert$( source$ , target$ , position )
insert( source$ , target$ , position )

Example:
a$="Hi how are you?"
b$="Roby, "
prints( insert( a$,b$,3 ) )
waitKey