c++ is string a number
bool isStringNumber(string str){
for(int i=0;i<str.length();i++){
if(str[i]<'0'||str[i]>'9'){
return false;
}
}
return true;
}
//Beleive in Allah!
//just my slogan
c++ is string a number
bool isStringNumber(string str){
for(int i=0;i<str.length();i++){
if(str[i]<'0'||str[i]>'9'){
return false;
}
}
return true;
}
//Beleive in Allah!
//just my slogan
how to grab numbers from string in cpp
// An easier way to extract each character would be:
string s = "abcde";
for (int i=0; i<s.size(); i++) {
cout << s[i];
}
// To test if a particular character is an integer, you would do this:
//test if s[i] is an int from 0-9
if (s[i] <= '9' && s[i] >= '0') {
return true;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us