1st Capturing Group (<table>)
<table> matches the characters <table> literally (case sensitive)
\| matches the character | literally (case sensitive)
2nd Capturing Group (<tr>)
<tr> matches the characters <tr> literally (case sensitive)
\[ matches the character [ literally (case sensitive)
<td> matches the characters <td> literally (case sensitive)
3rd Capturing Group ([^<]*)
Match a single character not present in the list below [^<]*
* Quantifier — Matches between zero and unlimited times, as many times as possible, giving back as needed (greedy)
< matches the character < literally (case sensitive)
< matches the character < literally (case sensitive)
\/ matches the character / literally (case sensitive)
td> matches the characters td> literally (case sensitive)
\] matches the character ] literally (case sensitive)
4th Capturing Group (<\/tr>)
\| matches the character | literally (case sensitive)
5th Capturing Group (<\/table>)