Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
809 views
in Technique[技术] by (71.8m points)

javascript - Regex to allow only a single dot in a textbox

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

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

1 Reply

0 votes
by (71.8m points)

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.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...