Hi Im new to AL programming, I have a string in HTML table format (with table header and body) and I would like to iterate it over the table body and extract data from every row cell.
Any help on it will be appreciated, thank you
for example, I have this html :
<table>
<thead>
<tr>
<th>Age</th>
<th>Name</th>
<th>Gender</th>
</tr>
</thead>
<tbody>
<tr>
<td>24</td>
<td>abc</td>
<td>F</td>