using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"[^>]*A(?=<)";
string input = @"<table class=""prod-fit-info-table"">
<tbody>
<tr class=""tr -dark-grey"">
<th class=""td -outer"">Make</th>
<th class=""td -outer"">Model</th>
<th class=""td -outer"">Year</th>
</tr>
<tr class=""tr -first"">
<td class=""td"" rowspan=""1"">Make A</td>
<td class=""td"">Model A</td>
<td class=""td"">Year A</td>
</tr>
<tr class=""tr -grey -first"">
<td class=""td"" rowspan=""1"">Make B</td>
<td class=""td"">Model B</td>
<td class=""td"">Year B</td>
</tr>
<tr class=""tr -first"">
<td class=""td"" rowspan=""1"">Make C</td>
<td class=""td"">Model C</td>
<td class=""td"">Year C</td>
</tr>
</tbody>
</table>";
RegexOptions options = RegexOptions.Multiline;
foreach (Match m in Regex.Matches(input, pattern, options))
{
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