Regular Expression Help
ASP.NET
4
Posts
2
Posters
0
Views
1
Watching
-
Hi i want to write regular expression for two decimal places, Exact Like 1.23 or 3.21 only Thanks
-
Hi i want to write regular expression for two decimal places, Exact Like 1.23 or 3.21 only Thanks
Check this out: d*\.dd
-
Check this out: d*\.dd
Sorry it's not wrking Thanks
-
Sorry it's not wrking Thanks
Hi This one should work, :) ^\d+.\d{2}$ Thanks