-4

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

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

请回复。

4

1 回答 1

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
于 2013-05-24T12:39:04.033 回答