Answers for "c++ check if variable is a number"

C++
0

c++ check if string is integer

using namespace std;

bool isNumber(const string& s)
{
   	string::const_iterator it = s.begin();
    while (it != s.end() && isdigit(*it)) ++it;
    return !s.empty() && it == s.end();
}
Posted by: Guest on September-15-2021

Code answers related to "c++ check if variable is a number"

Browse Popular Code Answers by Language