码迷,mamicode.com
首页 > 其他好文 > 详细

表示数值的字符串

时间:2019-08-26 10:13:32      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:ber   fun   tab   return   exp   hub   word   com   param   

原文引用https://www.dazhuanlan.com/2019/08/26/5d62fc3200b86/


题目

请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。例如,字符串”+100”,”5e2”,”-123”,”3.1416”和”-1E-16”都表示数值。 但
是”12e”,”1a3.14”,”1.2.3”,”+-5”和”12e+4.3”都不是。

思路

正则表达式

代码

1
2
3
function (s) {
return s.match(/[+-]?d*(.d*)?([eE][+-]?d+)?/g)[0] === s;
}

表示数值的字符串

标签:ber   fun   tab   return   exp   hub   word   com   param   

原文地址:https://www.cnblogs.com/petewell/p/11410455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!