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

LeetCode——Valid Number

时间:2017-07-03 14:02:57      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:tps   add   height   imp   problems   链接   color   ati   rgb   

Validate if a given string is numeric.

Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true

Note: It is intended for the problem statement to be ambiguous. You should gather all requirements up front before implementing one.

原题链接:https://oj.leetcode.com/problems/valid-number/

推断字符串是否是数字。

规则:出现+, - 则必须是第一个。或前一个是e;有. 则是小数,之前不可有.e;有e。则前面要有.,不能有e,而且后面要有.

可用正則表達式来解答。

	public static boolean isNumber(String s) {
		String reg = "[+-]?(\\d+\\.?|\\.\\d+)\\d*(e[+-]?\\d+)?

"; return s.trim().matches(reg); }






LeetCode——Valid Number

标签:tps   add   height   imp   problems   链接   color   ati   rgb   

原文地址:http://www.cnblogs.com/wzjhoutai/p/7110277.html

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