1
Answer

Regular Expression to validate decimal number

Prathap

Prathap

9y
392
1
how to validate a textbox using regex
must allow only one dot. (eg: 25.50)
do not accept if value contains only zero. (eg: 00.00) 
must allow only 3 digits after dot. (eg: 25.500) 
do not allow white space or any other special characters .
 
 
Answers (1)