Format
| Node | Description | Inputs | Outputs |
|---|---|---|---|
| csv_parse | Parses CSV text into a JSON array of objects. | text Text, delimiter Text | result Json |
| csv_stringify | Converts a JSON array of objects to CSV text. | data Json, delimiter Text | result Text |
| html_decode | Decodes HTML entities back to characters. | text Text | result Text |
| html_encode | Encodes special characters as HTML entities. | text Text | result Text |
| url_decode | Decodes a percent-encoded URL string. | text Text | result Text |
| url_encode | Percent-encodes text for use in URLs. | text Text | result Text |
csv_parse
Parses CSV text into a JSON array of objects.
Inputs:
text(Text) — CSV text (first row = headers)delimiter(Text) — column separator
Output: result (Json) — array of row objects
Example: delimiter = ,, text = name,age Alice,30 → [{"age":"30","name":"Alice"}]
See also: csv_stringify, data/json_parse
csv_stringify
Converts a JSON array of objects to CSV text.
Inputs:
data(Json) — array of objects to convertdelimiter(Text) — column separator
Output: result (Text) — CSV text with header row
html_decode
Decodes HTML entities back to characters.
Inputs:
text(Text) — HTML-encoded text
Output: result (Text) — decoded text
Example: text = <b>hi</b> → <b>hi</b>
See also: html_encode, url_decode
html_encode
Encodes special characters as HTML entities.
Inputs:
text(Text) — text with special characters
Output: result (Text) — HTML-safe text
Example: text = <b>hi</b> → <b>hi</b>
See also: html_decode, url_encode
url_decode
Decodes a percent-encoded URL string.
Inputs:
text(Text) — URL-encoded text to decode
Output: result (Text) — decoded text
Example: text = hello%20world → hello world
See also: url_encode, html_decode
url_encode
Percent-encodes text for use in URLs.
Inputs:
text(Text) — text to encode
Output: result (Text) — URL-encoded text
Example: text = hello world → hello%20world
See also: url_decode, html_encode