Answers for "how to sort chars in a string in java"

1

sort letters of a string

const sort = str => str.split('').sort((a, b) => a.localeCompare(b)).join('');

// Example:
sort('eat'); 
// Output:
// 'aet'
Posted by: Guest on October-25-2021
2

sort string java

import java.util.Arrays;

public class Test
{
    public static void main(String[] args)
    {
        String original = "edcba";
        char[] chars = original.toCharArray();
        Arrays.sort(chars);
        String sorted = new String(chars);
        System.out.println(sorted);
    }
}
Posted by: Guest on April-18-2021

Code answers related to "how to sort chars in a string in java"

Browse Popular Code Answers by Language