如何将字符串分隔为空的(特别是空的(数组,其中每个字符都被分隔?
String word = "hello"
至
String[] wordSeparated = {"h", "e", "l", "l", "o"}
我相信有一个char函数可以用来查找字母,但我不确定如何使用它。
使用split
方法
String word = "hello"
String[] wordSeparated = word.split("");