Hi,
I want to get a user input from user in a textbox, but i need to validate it
1.It should not take more than 7 digits before decimel
2.it should not take more than 3 digits after decimel
I actually figured out the 2nd part,,but first part is still a problem my regular expression is:
/^([0-9]{0,7})+(\.[0-9]{1,3})?$/
Tell me where i m going wrong
Suggest a valid regularexpression