Hello all,
I am fairly new to Regex. I have data that I downloaded via web scraping however the parsing has thrown me some issues.
I have the following lines
<th scope="col width="10"> </th><th scope="col">DX</th><th scope="col">MDC</th><th scope="col">MS-DRG</th></tr>
<tr><td>A000</td><td align=center>06</td><td>371-373</td>
I would love to see them parsed like so. Any help would be much appreciated as well as a quick explanation for learning purposes!
| DX | MDC | MS-DRG |
| A000 | 06 | 371-373 |
Thanks community!