string_to_list


string_to_list(s)
      

Return a list of all the characters from the string s.

Examples:


string_to_list("hello")
// [\h, \e, \l, \l, \o]
      

Also see:

list_to_string


Core Module Index | Contents