static void Main(string[] args)
{
StringBuilder sbr = new StringBuilder();
sbr.AppendLine("<p><img src=\"/images/quan.png\" alt=\"\"> 入料粒度1:210-1200mm</p>");
sbr.AppendLine("<p><img src=\"/images/quan.png\" alt=\"\"> 入料粒度2:210-1200mm</p>");
sbr.AppendLine("<p><img src=\"/images/quan.png\" alt=\"\"> 入料粒度3:210-1200mm</p>");
Match match = Regex.Match(sbr.ToString(), @"<p.*?>(.*?)<\/p>");
for (int i = 0; i < 3; i++)
{
if (match.Success)
{
Console.WriteLine(match.Value.Substring(3, match.Value.Length-7));
match = match.NextMatch();
}
}
}