157
//List<int> avgListReduced = avgColCnt.Where(x => x != avgColCnt.Min() && x != avgColCnt.Max()).ToList(); //removes all values that match max
1
using System;
2
using System.Linq;
3
using System.Collections.Generic;
4
using System.Text.RegularExpressions;
5
6
public class Program
7
{
8
public static void Main()
9
{
10
string html = @"
11
<table>
12
<caption>Employee Information for https://metadataconsulting.blogspot.com/</caption>
13
<thead>
14
<tr>
15
<th>Name</th>
16
<th>Position</th>
17
<th>Office</th>
18
<th>Age</th>
19
<th>Start Date</th>
20
<th>Salary</th>
21
</tr>
22
</thead>
23
<tbody>
24
<tr class='buttler'>
Cached Result