Format

NodeDescriptionInputsOutputs
csv_parseParses CSV text into a JSON array of objects.text Text, delimiter Textresult Json
csv_stringifyConverts a JSON array of objects to CSV text.data Json, delimiter Textresult Text
html_decodeDecodes HTML entities back to characters.text Textresult Text
html_encodeEncodes special characters as HTML entities.text Textresult Text
url_decodeDecodes a percent-encoded URL string.text Textresult Text
url_encodePercent-encodes text for use in URLs.text Textresult Text

csv_parse

Parses CSV text into a JSON array of objects.

Inputs:

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:

Output: result (Text) — CSV text with header row

html_decode

Decodes HTML entities back to characters.

Inputs:

Output: result (Text) — decoded text

Example: text = &lt;b&gt;hi&lt;/b&gt;<b>hi</b>

See also: html_encode, url_decode

html_encode

Encodes special characters as HTML entities.

Inputs:

Output: result (Text) — HTML-safe text

Example: text = <b>hi</b>&lt;b&gt;hi&lt;/b&gt;

See also: html_decode, url_encode

url_decode

Decodes a percent-encoded URL string.

Inputs:

Output: result (Text) — decoded text

Example: text = hello%20worldhello world

See also: url_encode, html_decode

url_encode

Percent-encodes text for use in URLs.

Inputs:

Output: result (Text) — URL-encoded text

Example: text = hello worldhello%20world

See also: url_decode, html_encode