Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey guys I want to validate a textbox which should only allow a single dot in it on a specifc place...

e.g if i have textbox of max length 10 than dot can only be entered once at position 8 like below.

1024587.12

OR if i have textbox of length 5 than it should be on 3rd like below,

10.24


Your kind help will be really appreciated and regarded.

NOTE...There should only be a single dot and not more.
Posted

1 solution

Currently I am using the following

"\d{1,13}\.\d{1,2}"


Which took first digit of 1-13 length and second of max 2lenght and a dot between.
 
Share this answer
 
v2

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