Workshop.codes
Create

String Slice Last updated November 26, 2024

Description

Results in the specified substring of the String value.

Snippet

String Slice(Global.variableName, 0, 0);

Properties

Returns: String
Parameters: String, Start Character Index, Character Count

String
Type: String, Default: Global Variable
The string value from which to build the substring.

Start Character Index
Type: Integer, Default: 0
Specifies the character that will start the substring (with 0 as the first character, 1 as the second character, etc.).

Character Count
Type: Integer, Default: 0
Specifies the number of characters in the substring.

Workshop.codes