using System;
using System.Text.RegularExpressions;
public class Example
{
public static void Main()
{
string pattern = @"<td>[A-Z0-9-]+<\/td>";
string input = @"<table class=""stripeMe"">
<tbody>
<tr>
<th>Image</th>
<th>Part#</th>
<th>Original#</th>
<th>Description</th>
</tr>
<tr class=""alt"">
<td>
<a href=""/item/8438657/High_Capacity/AC-C27/18_TO_20_VOLT_65_WATT_AC_ADAPT""><img width=""75"" height=""75"" title=""AM11X-2719 18 TO 20 Volt 65 Watt AC Adapter"" src=""/shop/images/image.php?img=BAT\8438657.jpg&thumbnail=Y""></a>
</td>
<td><a title=""AM11X-2719 18 TO 20 Volt 65 Watt AC Adapter"" href=""/item/8438657/High_Capacity/AC-C27/18_TO_20_VOLT_65_WATT_AC_ADAPT"">AC-C27</a></td>
<td>TR82J</td>
<td>18 TO 20 Volt 65 Watt AC Adapter</td>
</tr>
<tr class="">
<td>
<a href=""/item/10242499/High_Capacity/DRAC90B/DURACELL_90W_19V_UNIVERSAL_NOT""><img width=""75"" height=""75"" title=""AM11X-2719 Duracell 90W 19V Universal Notebook AC Adapter"" src=""/shop/images/no_picture_thumb.jpg""></a>
</td>
<td><a title=""AM11X-2719 Duracell 90W 19V Universal Notebook AC Adapter"" href=""/item/10242499/High_Capacity/DRAC90B/DURACELL_90W_19V_UNIVERSAL_NOT"">DRAC90B</a></td>
<td>331-0536</td>
<td>Duracell 90W 19V Universal Notebook AC Adapter</td>
</tr>
</tbody>
</table>";
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