How do I create a String with alphabetical order letters taken from another String?
Let's say I have something like this
String theWord = "Hello World";
How do I compute the new String to make it look like"
dehllloorw
Which is theWord but sorted character by character in alphabetical order.
Thanks in advance
char[] chars = theWord.toCharArray();
Arrays.sort(chars);
String newWord = new String(chars);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With