I am trying to support the following formats:
11.11
01.67
30.03
11.45.23
But the Regex i used "/^[+-]?([0-9]*\.?[0-9]+|[0-9]+\.?[0-9]*)([eE][+-]?[0-9]+)?$/"
supports only first 3 formats.
I need to match numbers with 1 or more decimal points like 11.12.36
Please help me out!