Data / Strings
6 nodes in this category.
String Format
data/string_format
Builds a string from a format template, replacing {0}–{3} with input arguments.
In: arg0, arg1, arg2, arg3
Out: result
String Ops
data/string_ops
Tests a string against a value using common string operations, returning a boolean.
In: text, value
Out: result
String Split
data/string_split
Splits a string by a delimiter and returns a list of parts.
In: text, delimiter
Out: list, size
String Replace
data/string_replace
Replaces occurrences of a search string (or regex) with a replacement string.
In: text, search, replacement
Out: result
String Length
data/string_length
Returns the character length of a string.
In: text
Out: length
String Case
data/string_case
Converts a string to uppercase, lowercase, or title case.
In: text
Out: result