Get Substring Action
Get Substring Action returns a substring starting at the specified index with the specified length. It extracts a portion of a string based on a starting position and a character count, storing the result in an output variable.
Appearance
In Talos, Get Substring Action appears as a standard rectangular node with a file icon that is half dashed.

Properties
As all Actions, Get Substring Action has a few unique properties that are essential for its functionality.
Common properties
Common properties inherited from Action.
By customizing this property, you can differentiate between same type of actions.
This property is Read only and it is not customizable
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references and string expressions to dynamically resolve the input string at runtime.
Examples
Assuming a declared String variable with name fullPath.
${fullPath}
C:/Users/${fullPath}/file.txt
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references or numeric expressions to dynamically resolve the start index.
Examples
Assuming a declared Integer variable with name offset.
0
5
${offset}
${offset} + 1
See more about Talos Scripting language & Expressions
This property supports expressions. You can use variable references or numeric expressions to dynamically resolve the length.
Examples
Assuming a declared Integer variable with name count and a String variable input.
10
${count}
${input}.Length() - 5