I have used an expression for validating a positive number as follows:
^\d*\.{0,1}\d+$
when I give it an input of -23, it will mark input as negative, but when I give it an input of +23, it will mark it as invalid number!
what is the problem?
Can anyone give a solution that With +23 it will return (positive)?