The InsertString function inserts a string into the input string.
| Input | Data Type | Description |
|---|---|---|
| Input1 | String | Data |
| Input2 | int | Sets the Offset property. (optional) |
| Input3 | String | Sets the Insert property. (optional) |
| Output | Data Type | Description |
|---|---|---|
| Output1 | String | The modified string. |
| Name | Property Type | Description |
|---|---|---|
| Offset | int |
The offset before which characters are to be inserted into the input string. The first character in the input string has a base index of 1. If the Offset is set to 0, the input string is output with no string insertion.If the Offset is greater than the length of the input string, the string to be inserted is appended to the end of the input string.
|
| Insert | string | The string to insert. |