StringSubstring
Alias:StringSubstring
, GetSubstring
Output:StringStream
Gets a substring from a string.
Parameter | Type | Required | Position | Default Value | Summary |
---|---|---|---|---|---|
String From | string | ✔ | 1 | The string to extract a substring from. | |
Length | int | ✔ | 2 | The length of the substring to extract. | |
Index | int | 3 | 0 | The index. |
Examples​
Example 1​
SCL​
StringSubstring 'hello world!' Index: 6 Length: 5
Expected Output​
world
Example 2​
SCL​
GetSubstring From: 'hello world!' Length: 5
Expected Output​
hello