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!
Page 1 / 1
Try this:
^8(?:[2-3][0-9]|40)
Oh wonderful, thanks so much!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.