I need a regex to the format
number/dot/number*2/dot/number*2
(1.10.50 for example)
For that I created the regex \d{1}\.\d{2}\.\d{2}
But this regex matches with the following tests:
10.10.10 -> true
1.10.1000 -> true
Thanks for help
I need a regex to the format
number/dot/number*2/dot/number*2
(1.10.50 for example)
For that I created the regex \d{1}\.\d{2}\.\d{2}
But this regex matches with the following tests:
10.10.10 -> true
1.10.1000 -> true
Thanks for help