数字字符串转整型
eg : string a = “123456”; –> 转为整型 int x = 12345;
#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
using namespace std;
int main()
{
string a = "12345";
char c = '1';
if(isdigit(c)) cout << "yes\n"; // 判断字符是否为 0 - 9 (即数字)
//下面三个都是转到第一个非数字的字符
cout << stoi(a) << '\n'; // 转为int型
cout << stol(a) << '\n'; // 转为long型
cout << stoll(a) << '\n'; // 转为long long型
return 0;
}