因此,看起来您需要按照 CSV 文件中的一些自定义逻辑进行排序。要执行此操作,您必须IComparer<string>
在一个类上实现并Compare
根据您的要求实现该方法。看起来在您的情况下,您需要首先将字符串分成两部分,字母部分和数字部分(使用正则表达式),然后首先比较字符串,如果两者相同,则比较数字部分并相应地返回值。
然后,您可以使用此类Comparer
对它们进行排序。
更新
代码示例
public class CustomStringComparer : IComparer<string>
{
public int Compare(string x, string y)
{
int? result;
if (AnyParamIsNull(x, y, out result))
{
return result.Value;
}
string x1, y1;
double x2, y2;
SplitInput(x, out x1, out x2);
SplitInput(y, out y1, out y2);
if (x1.Length == y1.Length)
{
result = string.Compare(x1, y1);
if (result.Value == 0)
{
if (x2 < y2)
{
return -1;
}
else if (x2 > y2)
{
return 1;
}
else
{
return 0;
}
}
else
{
return result.Value;
}
}
else
{
//To make AA before Z when desending
return x1.Length - y1.Length;
}
}
private bool SplitInput(string input, out string alphabets, out double number)
{
Regex regex = new Regex(@"\d*[.]?\d+");
Match match = regex.Match(input);
if (match.Success)
{
number = double.Parse(match.Value, CultureInfo.InvariantCulture);
alphabets = input.Replace(match.Value, "");
return true;
}
else
{
throw new ArgumentException("Input string is not of correct format", input);
}
}
private bool AnyParamIsNull(string x, string y, out int? result)
{
result = null;
if (x == null)
{
if (y == null)
{
// If x is null and y is null, they're
// equal.
result = 0;
return true;
}
else
{
// If x is null and y is not null, y
// is greater.
result = -1;
return true;
}
}
else
{
// If x is not null...
//
if (y == null)
// ...and y is null, x is greater.
{
result = 1;
return true;
}
}
return false;
}
}
使用此比较器
List<string> input = new List<string>()
{
"AA.1",
"A01.1",
"A01.2",
"Z.7"
};
input.Sort(new CustomStringComparer());
//To sort decending
input.Reverse();
注意:我已经证明上面的代码是正确的,否则是不正确的。可能存在一些边缘情况,它可能无法按预期工作