JavaScript - 正则表达式,用于在开头和小数点验证一个+/-

时间:2013-05-24 12:11:23

标签: javascript regex

我正在尝试编写一个正则表达式,可以使用 test()对象方法验证字符串中的一个+/-和字符串中的一个小数点。目前我的正则表达式是:  /[\d\b\t\+\-]|\./允许多次出现+, - 和点()。

我需要识别字符串的正则表达式:   +23.24 +0.23 -23.24 -0.23

请回复。

1 个答案:

答案 0 :(得分:1)

基本正则表达式

/^[+-]\d+\.\d+$/

说明:

^     Match start of string
[+-]  Match either plus or minus
\d+   Match one or more numbers of digits
\.    Match a period, the \ escapes it since it means any character
\d+   Match one or more numbers of digits 
$     Match end of string