הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
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"
}