I have one text input.
I wrote a regex for masking all special characters except .
and -
. Now if by mistake the user enters two .
(dots) in input, then with the current regex
var valueTest='225..36'
valueTest.match(/[^-.d]/)
I expected that the number will not pass this condition
How to handle this case. I just want one .
(dot) in input field since it is a number.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…