题解 | #表示数值的字符串#

表示数值的字符串

http://www.nowcoder.com/practice/e69148f8528c4039ad89bb2546fd4ff8

#include<bits/stdc++.h>
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param str string字符串 
     * @return bool布尔型
     */
    bool isNumeric(string str) {
    regex pattern("(\\s*)(([+,-]?\\d*)?)(([.]{1}\\d*)?)(((\\d+|[.]{1})[e|E]{1}[+,-]?\\d+)?)(\\s*)");
    if(regex_match(str,regex("\\s*"))||regex_match(str,regex("\\s*[+,-]*[.]*[e,E]*[+,-]*\\s*")))
        return false;
    else if(regex_match(str,pattern))
        return true;
    else
        return false;
    }
};

//利用正则表达式 结合 C++的regex来实现

全部评论

相关推荐

牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
评论
2
收藏
分享
牛客网
牛客企业服务