Hi all,
I'm still a noob with reqular expression, so I need a little help. I need to capture either
\d+\.\d+
or
\d+
but nothing else. For instance, "0.02", "1" and "0.50" should match positively. After few tests, I noticed that I cannot simply put something like
[\d+\.\d+|\d+]
It'll be highly appreciated, if somebody could show me, how to do this.
Many, many thanks in advance,
nhaa123