Positive Lookbehind(?<=<table>) <table>the literal text <table> (case insensitive) \s*any whitespace character, repeated any number of times
<tr>the literal text <tr> (case insensitive) \s*any whitespace character, repeated any number of times
<td>the literal text <td> (case insensitive) Character Class[a-z0-9 ]* *matches any number of characters from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
0-9one character from 0 (4810) to 9 (5710)
the literal (3210 / 408 / 2016)
<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
td>the literal text td> (case insensitive) \s*any whitespace character, repeated any number of times
<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
tr>the literal text tr> (case insensitive) g modifier: global. Finds all matches instead of stopping after the first
s modifier: single line. Allows a dot to match line terminators
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters