I have a Character array (not char array) and I want to convert it into a string by combining all the Characters in the array.
Character
I have tried the following f
It's probably slow, but for kicks here is an ugly one-liner that is different than the other approaches -
Arrays.toString(characterArray).replaceAll(", ", "").substring(1, characterArray.length + 1);