Text Parser Global Match NOT WORKING

I have a webscraper setup. And I have my regex setup properly.

However, whenever I use my Text Parser function to extract a certain address in my string. It will show 3 results, all duplicates of the same address because it shows up multiple times in that string… To reduce this only 1 output, I turned GLOBAL MATCH off for my text parser. However after I do that, it shows EMPTY for my total number of bundles. And I receive zero total bundles.

I am having the same issue on my other Parser as well with extracting a number.

Here are two examples

  1. After I ran the scenario with Global Match ON


  1. After I ran the scenario with Global Match OFF

When global match is off, you need to include capturing group(s) in the pattern.

For more information, see Capturing group: (...) - JavaScript | MDN

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!