Is there any way to convert a CharSequence
to an array of char
s? Why doesn't the interface have a method to get characters as an array?
I first convert the CharSequence
to String
and then get it as character array:
public char[] getAsCharArray(CharSequence input) {
return input.toString().toCharArray();
}