日期:2014-05-17 浏览次数:20834 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string s = @"a1 b2 c3 d5 a4 a5
a3 a5 b12 d18 c8 a12
b13 c11 d12 a11 d2 d8";
var query = Regex.Matches(s, @"([a-z])(\d+)")
.Cast<Match>()
.Select(x => new { a = x.Groups[1].Value, b = int.Parse(x.Groups[2].Value) })
.GroupBy(x => new { x.a, b = x.b <= 5 ? "1~5" : (x.b <= 10 ? "6~10" : ">10") })
.OrderBy(x => x.Key.a)
.Select(x => string.Format("{0} {1}有{2}个。", x.Key.a, x.Key.b, x.Count()));
foreach (var item in query)
Console.WriteLine(item);
}
}
}
string str = @"a1 b2 c3 d5 a4 a5
a3 a5 b12 d18 c8 a12
b13 c11 d12 a11 d2 d8";
var list = Regex.Matches(str, @"([a-z])((?<a>[1-5])
------解决方案--------------------
(?<b>10
------解决方案--------------------
[6-9])
------解决方案--------------------
(?<c>[1-9]\d+))(?:\s+
------解决方案--------------------
$)").OfType<Match>().Select(t => new
{