using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"<li.*?id="".*?([\d]+)"".*?<a.*?>.*?([\w]+)<\/a>";
string input = @"<li id=""ncc-nba-16451"" class=""che10""><a href=""/en/star"">23 - Star</a></li>
<li id=""ncd-bbt-5674"" class=""che10""><a href=""/en/moon"">54 - Moon</a></li>
<li id=""ertw-cxda-c6543"" class=""che10""><a href=""/en/sun"">34,780 - Sun</a></li>";
foreach (Match m in Regex.Matches(input, pattern))
{
Console.WriteLine("'{0}' found at index {1}.", m.Value, m.Index);
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx