InsertString()

Syntax

Result$ = InsertString(String$, StringToInsert$, Position)
Description
Insert 'StringToInsert$' into 'String$' at the specified 'Position'. The first 'Position' index is 1.

Example:


  Debug InsertString("Hello !", "World", 7)  ; Will display "Hello World!"
  Debug InsertString("Hello !", "World", 1)  ; Will display "WorldHello !"

Supported OS

All

<- Hex() - String Index - LCase() ->