Skip to main content
Participant
December 11, 2020
Question

help with regular expression allowing exactly 9 digits

  • December 11, 2020
  • 1 reply
  • 383 views

Hi,

Im trying to add a form field for an TAX ID which is exactly 9 digits.  I am entering it as shows in the attachment but it is not working.  Any help would be greatly appreciated.

This topic has been closed for replies.

1 reply

Enchanted_difference1549
Inspiring
February 15, 2024

I know this is an old post, anyway for the records: 

even now (feb 2024) this is not working and it's probably some kind of bug in regexp parsing by Sign, because the syntax is working when combined in more complex formulas, anyway you can use a working synonym as:

 

^[0-9]{6}$

 

this works. Why not the other? Dunno.