Greetings Power Apps Community,
I'm encountering an issue with extracting HTML content from a SharePoint list column and am seeking advice or strategies for dealing with it. My SharePoint list, called wodata, has a column named Items that contains information in an HTML table format. This format encompasses details such as items, unit rates, quantities, and totals, as shown below:
Content from the column is as follows:

and This is content of the column:
<div class="ExternalClass05230F9BE097400790F53A3414976C22"><table border="1" width="100%"><tr><th>Item</th><th>Unit Rate</th><th>Quantity</th><th>Total (USD)</th></tr><tr><td>Purchase of Dongles 4</td><td>$ 44</td><td>8</td><td>$ 352</td></tr><tr><td>Purchase of books</td><td>$ 16</td><td>97</td><td>$ 1552</td></tr><tr><td>Purchase of Cups</td><td>$ 5</td><td>20</td><td>$ 100</td></tr></table></div>

My objective is to transfer this information into a Power Apps collection to enable further manipulation, display, and modification within my application. Nevertheless, I'm finding it challenging to directly parse the HTML content within Power Apps, given the platform's limited HTML parsing capabilities. Specifically, I'm looking to populate a collection with the HTML data when an item is selected for viewing or editing.
Given the restrictions of my Power Apps license, incorporating Power Automate into Power Apps isn't an option for me.
I would greatly appreciate any assistance or alternative solutions that do not involve Power Automate.