Funzione
string.ToTable
Converts this string into a table where each element is a single-character substring of the original string.
Non ancora tradotto
Sintassi
string.ToTable(str)
Parametri
| Nome | Tipo | Predefinito | Descrizione |
|---|---|---|---|
str
|
string | — | The string to convert into a table |
Valore restituito
- string[] Table of single-character strings
Esempi
local str = "hello",local tbl = str:ToTable()