Function Substr

Function Substr

Gets part of a string value

Substr([VALUE],[START_INDEX],[LENGTH])

Parameters

#TypePassingDefaultNameDescription/Comments
1stringrequiredn/aVALUEThe value to check
2integerrequired1START_INDEXThe index in the string to start at (1+)
3integerrequiredn/aLENGTHThe length of the string from the start index to return

Returns

The string part


Examples

Example of getting part of a string

{{Substr("MyValue",2,2)}}

Will return yV