Specifies the string to be modified.
Specifies the position in String at which to insert InsertedString.
Specifies the string to insert into String.
1. |
The following example inserts "Matrox Design " in front of "Assistant" and returns "Matrox Design Assistant".
INSERTSTRING("Assistant", 1, "Matrox Design ")
|
2. |
The following example inserts "Design " between the words "Matrox Assistant" and returns "Matrox Design Assistant"
INSERTSTRING("Matrox Assistant", 8, "Design ")
|