I am trying to validate a string with following allowed conditions
string can be signed or unsigned numbers with dot(.). for example
10 or .3 or 1. or 1.1 or +5 or -5 or +.3 or -1. etc
below link is almost a close answer but fails on "+.3" Regular Expression for whole numbers and integers?
"[+-]?(?<!\.)\b[0-9]+\b(?!\.[0-9])"