String:SubString

Last updated 5 August 2026

String:SubString extracts a part of a String

defined by position and length.

Pin Info

Input 1: Input [String]

Input 2: Position [Int]

Input 3: Length [Int]

1-Input[String]: The node will extract part of this string

2-Position[Int]: Start of the substring to extract*

3-Length[Int]: Number of single characters to extract**.

Output 1: Substring [String]

Output 2: Remaining [String]

Output 3: Error [String]

1-Substring[String]: Emits the resulting substring.

2-Remaining[String]: Emits the input string without the substring.

3-Error[String]: Emits an error message if for example position isbigger than the size of the input string.

Node Parameters

Position: Defines where the first character of the substring is positioned*

Length: Defines how long the substring should be**