Splitting all letters in a string

when using str:split() - you split into section where a specific letter occurs
how do i split every letter?

You can use an empty string as the separator

string.split(str, "")

or

str:split("")
4 Likes