Text Parser only returning 1 Bundle

I can’t figure this out for the life of me.

Problem: Text parser is only returning 1 bundle even though the regular expression call multiple.

Question: What am I doing wrong? I even read over the guide: How to use Regex in Make? and everything seems to be set up the same.

Expression in Question:
<h1[^>]class=“title”[^>]>.?<a[^>]>(?.?)</a>.?</h1>|<span\s+itemprop\s*=\s*[‘"]articleBody[’"]\s*>(?[\s\S]?)</span>\s</div><meta\b[^>]>|<span\s+itemprop=“keywords”.?>(?.*?)</span>

Blueprint:
blueprint.json (79.0 KB)


Change Global Match to Yes.

Doing this will return all the matches instead of just the first match.

The description below the field explains it quite clearly.

samliewrequest private consultation

Join the unofficial Make Discord server to chat with us!

5 Likes

You are my hero! Thank you for your quick reply!