String:Route

Last updated 5 August 2026

String:Route is the easiest way to parse

string inputs in Backstage.

It compares the start of a String with one

or multiple Routes, on a match it will remove

the matched part, end emit the rest of the string

on this output.

Pin Info

Input 1: Input [String]

Input 2: Routes [String]

1-Input[String]: If the beginning of the String matches any routeit will be emitted there, if not it will take the Unmatched Route.

2-Route[String]: Stores the Input as new Route list in the Node buffer.

Output 1: Unmatched [String]

1-Unmatched[String]: All strings that do not matchany route, will be emitted here unchanged2+-ROUTENAME[String]: If an Input strings beginningmatches the Routename it will remove the Routenameand emit the Rest of the string here.

Node Parameters

Route: Defines Route list, each detected entry creates a new output that will be compared to an input string and redirected on a Match.

Expand:

Separator: Defines what character should separate the individual Routes that create outputs.