Text.ToList
Returns a list of character values from the given text value.
function (text
as text) as list
Returns a list of character values from the given text value
text
.Text.Conversions from and to text
Create a list of character values from the text "Hello World".
Text.ToList("Hello World")
{"H", "e", "l", "l", "o", " ", "W", "o", "r", "l", "d"}
Last modified 4yr ago