Click here to Skip to main content
15,905,682 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I want to check the text entered should be in the format 999/99 three numbers follwd by slash and again followed by 2 numbers (numbers 0 - 9)

I want to do it at server side not at client side ... How can i do this?
Posted

1 solution

The check pattern would be
\b\d{3}\/\d{2}\b
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900