Вам нужны символы?
"Test".toList // Makes a list of characters
"Test".toArray // Makes an array of characters
Вам нужны байты?
"Test".getBytes // Java provides this
Вам нужны строки?
"Test".map(_.toString) // Vector of strings
"Test".sliding(1).toList // List of strings
"Test".sliding(1).toArray // Array of strings
Вам нужны кодовые знаки UTF-32? Хорошо, это сложнее.
def UTF32point(s: String, idx: Int = 0, found: List[Int] = Nil): List[Int] = {
if (idx >= s.length) found.reverse
else {
val point = s.codePointAt(idx)
UTF32point(s, idx + java.lang.Character.charCount(point), point :: found)
}
}
UTF32point("Test")