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

// test20.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<cstring>
#include<string.h>
#include<deque>
#include <forward_list>

using namespace std;

class Solution {
public:
    bool isNumeric(char* str)
    {
        string s = str;
        //如果存在不合法字符
        if (s.find_first_of("eE") > s.size())
        {
            if (s.find_first_of("+-") > 0&&s.find_first_of("+-")<s.size())
                return false;
        }
            
        if (s.find_first_of("abcdfghijklmnopqrstuvwxyz") < s.size())
            return false;
        if (s.find_first_of("e") == s.size() - 1)
            return false;
        //不存在e,但是有两个正号或者符号
        //找到了E,但是eE后面有.
        if(s.find_first_of(".")<s.size())
          if (s.find_first_of("eE") < s.find_first_of("."))
            return false;
        
        int first = s.find_first_of("+-");
        int last = s.find_last_of("+-");
        if (s.find_first_of("eE")>s.size()&&first != last) return false;
        int first1 = s.find_first_of(".");
        int last1 = s.find_last_of(".");
        if ( first1 != last1) return false;
    //  cout << s << endl;
        return true;
    }

};
int main()
{
    
    Solution so;
//  vector<int> numbers = { 1,2,3,4,5 };
 /*   bool result=so.IsContinuous(numbers);
    cout <<"result:"<< result << endl;*/
    char* str = "1.79769313486232E+308";

    bool result = so.isNumeric(str);
    cout << "result:" << result << endl;

    cout << endl;
    return 0;
}

注意:这个用到了正则表达式!!!!!!!!!!
      我的这个方法不好!!!!!!!!
      要熟悉正则表达式!!!!!!

转载于:https://www.cnblogs.com/wdan2016/p/6031880.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值