3

Is there any way to convert a CharSequence to an array of chars? Why doesn't the interface have a method to get characters as an array?

Mahozad
  • 18,032
  • 13
  • 118
  • 133

1 Answers1

2

I first convert the CharSequence to String and then get it as character array:

public char[] getAsCharArray(CharSequence input) {
    return input.toString().toCharArray();
}
Mahozad
  • 18,032
  • 13
  • 118
  • 133