I need to use the PhantomJsCloud.Regex connector to pull the full HTML of a complete <article>...</article>
tag.
For example:
=Connector("PhantomJsCloud.Regex", "https://www.searchenginejournal.com/seo-guide/", "(?s)(<article .+</article>)", 1, , TRUE )
However, that only returns the opening tag and nothing more: <article class="padding-0">
.
I know this Regex is correct, because RegexpFindOnUrl() returns the full HTML, as expected:
=RegexpFindOnUrl( "https://www.searchenginejournal.com/seo-guide/", "(?s)(<article .+</article>)", 1 )
PhantomJsCloud is necessary because I'm working on JavaScript-generated content.
Any guidance would be greatly appreciated!
-Tim W.