我正在尝试编写一个正则表达式,可以使用 test()对象方法验证字符串中的一个+/-和字符串中的一个小数点。目前我的正则表达式是:
/[\d\b\t\+\-]|\./
允许多次出现+, - 和点(。)。
我需要识别字符串的正则表达式: +23.24 或 +0.23 或 -23.24 或 -0.23 。
请回复。
答案 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