Hey!
I am trying to parse HTML content & extract all the image SRC, not able to find any actions to parse HTML & extract information from a HTML element & its attribute. In below example there are three images with src, would have to extract ImageURL1,ImageURL2,ImageURL3.
<html>
<body>
<h2>HTML Image</h2>
<img src="ImageURL1" alt="Trulli" width="500" height="333">
<p>some text</p>
<img src="ImageURL2" alt="Trulli" width="500" height="333">
<img src="ImageURL3" alt="Trulli" width="500" height="333">
</body>
</html>
The HTML will be received in a email. The HTML given above is simple but it will be complex HTML with n no of images. If there is no other way to extract using standard action I am planning to write an Azure function to parse the HTML using NewtonSoft HTML parser. Would be great if someone provides some insights.