Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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"
}