Sorting a List of Strings numerically (1,2,...,9,10 instead of 1,10,2)(以数字方式对字符串列表进行排序(1,2,...,9,10 而不是 1,10,2))
问题描述
我有一个这样的列表:
var l = new List<string> {"bla 1.txt","bla 2.txt","bla 10.txt","bla 3.txt"};
如果我调用 l.Sort(),列表将按 1、10、2、3 的顺序排序,这从纯字符串的角度来看是有意义的,但从用户的角度来看很糟糕.
If i call l.Sort(), the list gets sorted in the order 1,10,2,3 which makes sense from a pure string point of view, but sucks from a User Perspective.
由于我不想/不能强迫我的用户将它们命名为 01、02、03,...我想知道是否有内置方法或简单算法来正确检测和排序数字,所以我有1,2,3,10?由于数字只有 1 或 2 个字符长(即不超过 99),我可能会做一个正则表达式,临时用 0 前缀所有 1 位数字并排序,但在我重新发明轮子之前,我想知道是否已经存在?
Since I don't want to/can't force my users to name them 01, 02, 03,... I wonder if there is either a built-in method or simple algorithm to detect and sort numbers properly, so that I have 1,2,3,10? Since the numbers are only 1 or 2 characters long (i.e., no more than 99) I could possibly do a regex that temporarily prefixes all 1-digit numbers with a 0 and sort, but before I reinvent the wheel I wonder if something already exists?
.net 3.5SP1,如果重要的话,不是 4.0
.net 3.5SP1 if that matters, not 4.0
推荐答案
最好的方法是使用IComparer.这已经完成,可以在代码项目中找到.
The best approach is making use of IComparer. This has already been done and can be found on code project.
这篇关于以数字方式对字符串列表进行排序(1,2,...,9,10 而不是 1,10,2)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:以数字方式对字符串列表进行排序(1,2,...,9,10 而不是 1,10,2)
基础教程推荐
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
