Text.ToList
Returns a list of character values from the given text value.
Syntax
Text.ToList(
text as text
) as list
Remarks
Returns a list of character values from the given text value text
.
Examples
Example #1
Create a list of character values from the text "Hello World".
Text.ToList("Hello World")
Result:
{
"H",
"e",
"l",
"l",
"o",
" ",
"W",
"o",
"r",
"l",
"d"
}
Category
Text.Conversions from and to text