Text.ToList

Syntax

Text.ToList(text as text) as list

About

Returns a list of character values from the given text value text.

Example 1

Create a list of character values from the text "Hello World".

Usage

Text.ToList("Hello World")

Output

    "H",
    "e",
    "l",
    "l",
    "o",
    " ",
    "W",
    "o",
    "r",
    "l",
    "d"
}