我有一个文本输入字段,我想查看用户放在哪里。我想允许他们用$或者用$来存金钱。他们应该能够进入:
$12
$12.0
12
12.0
$ 12.0
不知道我该怎么做。我认为正则表达式可能有所帮助,但我不知道该怎么做。
答案 0 :(得分:2)
基本正则表达式。
(/^\$?\s?\d+(\.\d+)?$/).test("$12.0");
/ -Beginning of Reg Exp
^ - Start of line
\$? - Match a $ or not
\s? - Match a space or not
\d+ - match one or more numbers
(\.\d+)? - match a decimal point followed by more numbers
$ - match end of a line
/ - end of reg expression
这将失败
12.
和.0
因为他们不在你可能的解决方案中