首页 > 代码库 > parse string once and convert it to float

parse string once and convert it to float

一个小题目,模拟stof()功能,网上答案很多,但是感觉都不够简洁。
主要是整数部分和小数部分实现由一定区别,这里尝试不区分整数和小数部分,先忽略小数点,然后最后在做一个除操作。
比如输入:100.123,先转换为100123,然后除1000

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
//simulate the stof() method
float _stof(string s){
    float res = 0;
    if(s.length() > 0){
        int dp= -1;
        for (int i = 0; i < s.length(); ++i){
            if(s[i] == . )
                dp = 0;            
            if(s[i] < 0 || s[i] >9)
                continue;
            if(dp > -1)
                dp++;
            res = res*10 + s[i] - 0;
        }
        if(dp > -1)
            res = res/pow(10, dp);      
    }
    return res;
}