#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来实现