Problem with pattern match filter

Hi All!

  • I’m trying to filter based on a string matching a pattern of 10 consecutive digits
  • My regex works in regex101 and RegExr, so I assume I am just having a syntax problem
  • I also found another make.com thread (Regex patterns don't match - # unsupported character?) which suggested I could use #(\d+) to match it, but that’s not working either

Screenshot 2024-04-05 082726

Screenshot 2024-04-05 081720

Screenshot 2024-04-05 081643

What am I doing wrong here?

Welcome to the Make community!

Your pattern should simply be

^\d{10}$

Screenshot_2024-04-05_090431

2 Likes