我的代码:
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using RegexTest;
namespace RegexTest
{
class Program
{
static void Main(string[] args)
{
string strUrl = @"www.aaa.com.cn\2005\06\05\default.htm";
strUrl = Regex.Replace(strUrl,@"(\d{2,4})+(?=\\)","");
Console.WriteLine(strUrl);
}
}
}
为什么Replace不好用阿?请大家给我讲解一下。谢谢