regex code help please | XM Community
Skip to main content
Question

regex code help please

  • June 6, 2023
  • 1 reply
  • 31 views

Forum|alt.badge.img+1

Hi,

I am needing some help with my regex validation code.

I would like to restrict responses to a number between 0 and 10.

Any help would be greatly appreciated.

 

1 reply

krbhavya
Level 6 ●●●●●●
Forum|alt.badge.img+20
  • Level 6 ●●●●●●
  • June 6, 2023

Hi @Jade3 

This regex code can be used ^(10|[0-9])$ to restrict responses between 0 and 10.

Let me know what you have used