Hello,
I try to extract data from a web seite with Power Automate Desktop. As the CSS Selektor is not unique I want to use regular expressions. I'm used to create them (coded much Perl in ma past) - but I'm not sure how to apply them here.
And I just searched the word "Unternehmenssitz" which is the word I am looking for as the headline (the text I want follows in the next tag). When I search for (Unternehmenssitz) everything is fine. But as soon as I add something to it, the Regex retruns nothing. Even when just adding the < of the closing tag.
I tried both
(Unternehmenssitz)<
and the escaped version
(Unternehmenssitz)\<
and with a \s* in between:
(Unternehmenssitz)\s*<
(Unternehmenssitz)\s*\<
All four return nothing.
The final regex should be something like this: (And should return "Halbergmoos, Germany" in the example below.)
Unternehmenssitz</td><dd[^>]+>([^<]+)<\/dd>
Here is a screenshot of the web page code (from the developer tool):

Thanks for your help!
Jan