2024-04-17 08:54:28
//将模式指定为"<L>(.*?)</L>"就行了,下面是一个例子。
using System;
using System.Text.RegularExpressions;
class Program
{
public static void Main(string[] args)
{
string str="<L><p>sone text</p><a href=\"xxx\">xxx</a></L>"+
"abc <html><body><L>一些字符串</head></L></body></html>";
Regex r=new Regex("<L>(.*?)</L>");
Match m=r.Match(str);
while(m.Success)
{
Console.WriteLine(m.Groups[1].Value);
m=m.NextMatch();
}
Console.WriteLine("按任意键继续。。。");
Console.ReadKey(true);
}
}
2024-04-17 07:02:05
看清楚问题再回答。
2024-04-17 06:39:36
按照你的要求编写的程序如下