Skip to main content

20 docs tagged with "String"

View All Tags

Parse Bool

Converts the input string to a bool if able.

Parse Float

Converts the input string to a float if able.

Parse Int

Converts the input string to a integer if able.

String Concat

Concatenate a given series of strings in order, with an optional separator.

String Format

Use this chip to combine multiple strings together into a single string output. The "Format" input is part of final string output and can include other string inputs by using this syntax: \{input pin # starting at 0\}. For example, a "Format" input with a default value of “Hello, \{0\}!” with a single additional input pin with the value "World" is fully output as "Hello, World!". If you had another input pin you would use \{1\} to denote the 2nd pin. You can add more string inputs by configuring the chip and pressing "Add Input".

String Index Of

Outputs the index where the substring starts in the target string.

String Length

Outputs the length of a target string in UTF-16 characters.

String Replace

Replaces all instances of pattern within string with replacement.

String Split

Splits the target string at the input character.

String Substring

Allows you to extract individual parts from a string. You can think of this like a list of characters.

String Trim

Outputs the string with leading and trailing whitespace removed.

string Variable

Reads or writes a variable in the current scope based on the name.

To String

Converts the input value to the string type. Example: the integer input 10 would output "10" as a string. Helpful for debugging purposes.

To String

Converts the input value to the string type. Example: the integer input 10 would output "10" as a string. Helpful for debugging purposes.