int pos=0,p=0;
double v1,expo,res;
p=value.find("e+");
if(value.find("e+")!=-1 ||value.find("e-")!=-1)
{
pos=value.find("e");
if(atof(value.substr(0,pos).c_str()))
{
v1=StringToDouble(value.substr(0,pos));
expo=StringToDouble(value.substr(pos+1,(value.length()-(pos+1))));
res=pow(10,expo)*v1;
return DoubleToString(res);
}
}
float myAtof(string myString)
{
Predicate<char> testChar = c => c == '.' ||
c == '-' ||
c == '+' ||
char.IsDigit(c);
myString = new string(myString.Trim().TakeWhile(testChar).ToArray());
if (myString.Length > 0)
{
float rvl;
// accounts for bogus strings of valid chars, e.g. ".-":
if (float.TryParse(myString, out rvl))
{
return rvl;
}
}
return 0;
}
Experts Exchange always has the answer, or at the least points me in the correct direction! It is like having another employee that is extremely experienced.
When asked, what has been your best career decision?
Deciding to stick with EE.
Being involved with EE helped me to grow personally and professionally.
Connect with Certified Experts to gain insight and support on specific technology challenges including:
We've partnered with two important charities to provide clean water and computer science education to those who need it most. READ MORE