Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

C# Sorting element inside an array

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);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...