I want a regex for decimal numbers like 00.0
I tried this [0-9]{1,2}(.[0-9]{1})? which works perfectly.
But I have to add ^ at begining and *$ at end.
Is there any way to have the regex work as the one working along with adding these characters?
^([0-9]{1,2}(.[0-9]{1})?)*$ --> fails to do what I want.
My regex should look like ^[Anything here]*$
Any help would be appreciated.
Thanks
.*$at the end? You should probably escape the '.' too: your perfect match probably matches00/0and00x0. – Jonathan Leffler Feb 10 '11 at 16:06()before adding the leading^and ending*$? Your example seems to indicate it does. – eldarerathis Feb 10 '11 at 16:34