Text.ToList
指定されたテキスト値から文字の値の一覧を返します。
Syntax
Text.ToList(
text as text
) as list
Remarks
指定されたテキスト値 text
から文字の値の一覧を返します。
Examples
Example #1
テキスト "Hello World" から文字の値の一覧を作成します。
Text.ToList("Hello World")
Result:
{
"H",
"e",
"l",
"l",
"o",
" ",
"W",
"o",
"r",
"l",
"d"
}
Category
Text.Conversions from and to text