Using Matches Regex and Skip Logic to include a range of numbers | XM Community
Skip to main content

What would the regex code be to only include participants who have the first 3 digits of their area code fall between 820-840? Tried ^8[2-4]/d+$ but that didn't work. Or if there's a more logical way to frame this skip logic question that would be wonderful. Excited to see what you guys think!

Try this:
^8(?:[2-3][0-9]|40)


Oh wonderful, thanks so much!


Leave a Reply