INSRT
INSRT inserts one string into another string at a specified insertion point.
This function is valid in both TM1® rules and TurboIntegrator processes.
Syntax
INSRT(string1, string2, location)
Argument |
Description |
---|---|
string1 |
A text string. |
string2 |
A text string. |
location |
The position in string2 at which you want to insert string1. The function inserts string1 into string2 immediately prior to the character you specify. |
Example
INSRT('ABC', 'DEF', 2) returns DABCEF.