Hi,
I'm looking for an approach to read all the content inside an HTML tag with an ID that I derive dynamically in the workflow.
Eg.
<HTML>
...
<DIV id="section-1" class="someclass" > <table><tr>...</tr></table>
</DIV>
<DIV id="section-2" class="someclass" > ...
</DIV>
...
</HTML>
A solution somewhat similar to the regex -- <div class=\"someclass\" id=\"' + [DIV_ID] + '\" .*?>.*?<\/div> (not working), that generates the output;
---
<DIV id="section-1" class="someclass" > <table><tr>...</tr></table>
</DIV>
---
And eventually the goal is to extract and list out the <table> contents.
Could anyone provide some suggestions? Thank you in advance!