日期:2014-05-17 浏览次数:20811 次
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 = @"①元旦:</strong>1月1日
②元旦:</strong>2007年12月30日";
var result = Regex.Matches(s, @"元旦:\</strong\>(\d{4}年){0,1}(?<m>\d{1,2})月(?<d>\d{1,2})日");
foreach (Match item in result)
Console.WriteLine("{0} {1}", item.Groups["m"], item.Groups["d"]);
}
}
}
string s = @"①元旦:</strong>1月1日
②元旦:</strong>2007年12月30日";
MatchCollection matches=Regex.Matches(s,@"(?is)\w+:</strong>(?:\d{4}年)?(?<month>\d{1,2})月(?<date>\d{1,2})日");
foreach(Match match in matches)
Console.WriteLine("{0} {1}",match.Groups["month"].Value,match.Groups["date"].Value);
string[] strs = new string[] { "元旦:</strong>1月1日", "元旦:</strong>2007年12月30日" };
Regex regex = new Regex(@"(?<Month>\d+)月(?<Day>\d+)日");
foreach (string str in strs)
{
Match match = regex.Match(str);
Console.WriteLine(match.Groups["Month"].Value + " " + match.Groups["Day"].Value);
}