StrInsert
Previous
Top
Next
Returns a
new string
after inserting a string to the old string.
Syntax: StrInsert (String, StartIndex, Value)
Example:
Old = "12567"
New = StrInsert (Old,2,"34")
Result: New = "1234567"