字符串数组按照大小排序
有时候我们会需要把获取到的路径数组,字符串数组或其他类型的字符串数组排序,大家可能会遍历来单独排序,下面介绍一下使用正则表达式来排序。
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Text.RegularExpressions; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string[] filenames = new string[] { "1-1 入门", "1-10 练习", "1-11 答案", "1-2 讲解", "1-24 讲解2" }; var result = filenames.OrderBy(x => PadNumbers(x)); foreach (string r in result) { Response.Write(r+"<br>"); } } public static string PadNumbers(string input){ return Regex.Replace(input, "[0-9]+", match => match.Value.PadLeft(10, '0'));} }
在这里PadNumbers可以定义为:
public static string PadNumbers(string input){ return Regex.Replace(input, "[0-9]+", match => match.Value.PadLeft(10, '0'));}
这会将输入字符串中出现的任何数字(或多个数字)填充零,这样可以OrderBy看到:
ABC0000000010
ABC0000000001...AB0000000011
结果:
1-1 入门 1-2 讲解 1-10 练习 1-11 答案 1-24 讲解2
参考:字符串数据按照大小排序 - 启明星工作室 - 博客园 (cnblogs.com)
不要去跟随消逝的虚无