Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
bool Validate(const char* s, double& x)
{
if (!s || !*s)
return false;
istrstream val(s,strlen(s));
val >> x; // let C++ library works...
return val.good();
}
inline bool Validate(const string& s, double& x)
{
return Validate(s.c_str(),x);
}
bool Validate(const char* s, double* px = 0)
{
double x;
return Validate(s,px?px:&x);
}
inline bool Validate(const string& s, double* px = 0)
{
return Validate(s.c_str(),px);
}