Handbook · Reference · Blockly · Containd text helpers
Blockly: Containd text helpers
Where in the UI. Scripts tab toolbox.
Split/join/sanitize and encoded selects.
| Block id | Read as | Purpose |
|---|---|---|
containd_split_string | split string | Split a string into a list by delimiter (e.g. ";" or newline) |
containd_join_strings | join strings | Join a list of strings with a delimiter. Type \ / \\r / \\t in a text block for real newline/CR/tab (same unescape as split). |
containd_strip_non_alphanumeric | strip non alphanumeric | Keep ASCII letters and digits only (A–Z, a–z, 0–9). Useful for ISO → RFC 6350 basic timestamps after dropping ms digits. |
containd_string_at_index | string at index | Safe list index read (returns empty string when missing) |
containd_multiline_line_at | multiline line at | Split multiline text by newline and return one line (0-based index) |
containd_encoded_select_selected | encoded select selected | Read selected value (index 0) from encoded stringSelect value |
containd_encoded_select_options | encoded select options | Read option list (indices 1..n) from encoded stringSelect value |
containd_encoded_select_build | encoded select build | Build encoded stringSelect value: selected;option1;option2;... |