In this program you will learn how to sort words in a String. The sorting will be done in ascending order.
String sort() Method
In this program you will learn how to sort words in a String. The sorting will be done in ascending order. We are going to use sort() method of String class in Java. The description of the code is given below for the usage of the method.
Description of the code:
Here, you will get to know about the sort() method through the following java program. In the program code given below, we have taken a String. First of all we will convert that string in array of characters. For this we have used toCharArray(); method. After that we have used sort(); method to sort that array of characters.
The code of the program is given below:
|
Output of the program:
C:\unique>javc SortWords C:\unique>java SortWords Teghiiimnnrssstwy C:\unique> |