Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
803 views
Welcome To Ask or Share your Answers For Others

1 Answer

I think you mean this,

^-?d+(?:.d+)?$

DEMO

It allows positive and negative numbers with or without decimal points.

EXplanation:

  • ^ Asserts that we are at the start.
  • -? Optional - symbol.
  • d+ Matches one or more numbers.
  • (?: start of non-capturing group.
  • . Matches a literal dot.
  • d+ Matches one or more numbers.
  • ? Makes the whole non-capturing group as optional.
  • $ Asserts that we are at the end.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...