0

I have 2 textbox asp controls: Phone and Time.
Phone should have format: +7 (xxx) xx-xx

Time is a float and should have value between 1.0 to 40.0 (for example 20.5)

How to realize it in regular validation section?

Ivan Tikhonov
  • 304
  • 2
  • 17

1 Answers1

0

Maybe this pattern will help you:

+7 (\d\d\d) (\d\d)-(\d\d)

Durdu
  • 4,649
  • 2
  • 27
  • 47