String

Usine provides modules for manipulating text strings and comma-separated text lists (comma-text). Comma-text is Usine's native list format — an ordered sequence of string elements separated by commas. These modules handle concatenation, extraction, search, case conversion, JSON parsing, format conversion, and routing of text data.

Categories

Category Modules Description
String Operations 18 Concatenate, extract, search, replace, case conversion, hashing, and format conversion
String Routing 2 Select and dispatch string flows
Comma-Text Operations 16 Create, access, modify, resize, combine, and query comma-text lists
Comma-Text Conversion 4 Convert between comma-text, arrays, floats, and individual strings
JSON 2 Create and parse JSON strings
Text Editor 1 Inline text editing

String Operations

Create, manipulate, search, and convert individual strings.

Module Description
String Constant Constant string value
String Concat Concatenate multiple strings
String Concat Voice Number Append the current voice number to a string
String Extract Extract a substring by position and length
String Delete Delete characters from a string by position and count
String Insert Insert a string into another at a given position
String Replace Replace all occurrences of a pattern in a string
String Find Position Find the position of a substring
String Get Length Get the number of characters in a string
String Get Token Extract a token from a string by separator
String Equal Compare two strings for equality (output 1 if equal)
String Lowercase Convert a string to lowercase
String Uppercase Convert a string to uppercase
String Trim Remove leading and trailing whitespace and control characters
String Hash Compute the hash of a string
String Random Generate a random string
String Float to String Convert a float value to text
String Integer to String Convert an integer value to text
String to Float Convert text to a float value
String to integer Convert text to an integer value

String Routing

Select and dispatch string flows between multiple inputs/outputs.

Module Description
String Mix Selector Select one string from N inputs by index
String Mix Dispatch Dispatch one string input to N outputs by index

Comma-Text Operations

Create, access, modify, and query ordered comma-separated text lists.

Module Description
Comma-Text Editor Inline comma-text editor in the settings panel
Strings to Comma-text Create a comma-text from individual strings
Comma-Text Get String Get a string at a given index in a comma-text
Comma-Text Set String Set a string at a given index in a comma-text
Comma-Text Get String Index Find the index of a string in a comma-text
Comma-Text Get Size Get the number of elements in a comma-text
Comma-Text Set Size Set the size of a comma-text (truncate or pad)
Comma-Text Append Append a string to a comma-text
Comma-Text Insert Insert an element at a position in a comma-text
Comma-Text Delete Delete elements from a comma-text
Comma-Text Extract Extract a range of elements from a comma-text
Comma-Text Combine Merge N comma-texts into one
Comma-Text Combine Inverse Split one comma-text into N comma-texts
Comma-Text Intersection Return the common elements of two comma-texts

Comma-Text Conversion

Convert between comma-text and other formats (arrays, floats, strings).

Module Description
Comma-Text to Array (SCRIPT) Convert comma-text values to a float array
Array to Comma-Text (SCRIPT) Convert a float array to comma-text
Comma-Text to Floats Extract all elements as individual float outputs
Comma-Text to Strings Extract all elements as individual string outputs

JSON

Create and parse JSON strings.

Module Description
String JSON Create Create a JSON string from named fields
String JSON Parser Parse a JSON string and extract field values to outlets

Text Editor

Module Description
Text Editor Simple inline text editor

See also

version 7.0.250121

Edit All Pages