Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to do a sorting for my result.

Eg: result = 04,07,01,57,83,39 Expect: result = 01,04,07,39,57,83

I have been try use array.sort, but the result will be return like ,,,,,00013345778

So is there any solution to get my expect result?

This is the code I try to do:

String result = 04,07,01,57,83,39;
Sorting(result);

public static string Sorting(string input)
{
    char[] characters = input.ToArray();
    Array.Sort(characters);
    return new string(characters);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

It is ambiguous whether the original data is a string or an integer.

If it's an integer, @Carlos Jafet Neto's answer would be appropriate.

If it is a character string, it will be as follows.

static void Main(string[] args)
{
    String result = "04,07,01,57,83,39";
    Console.WriteLine(Sorting(result));
}
public static string Sorting(string input)
{
    string[] characters = input.Split(',');
    Array.Sort(characters);
    return string.Join(',',characters);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...