1. 程式人生 > >c++ std::to_string doube或float去除小數點尾部的0

c++ std::to_string doube或float去除小數點尾部的0

標準庫

std::to_string(double) 可以將一個float或者double轉換成字串,但是會直接變為.000000的格式(如果尾部為0).

這裡使用正則匹配的方式去除尾部的0.(當然也可以使用boost的boost::lexical_caststd::string精確方式,但是會出現.99999999999999999999)
因此

static std::string doubleToString(double price) {
	auto res = std::to_string(price);
	const std::string format("$1");
	try {
		std::regex r("(\\d*)\\.0{6}|");
		std::regex r2("(\\d*\\.{1}0*[^0]+)0*");
		res = std::regex_replace(res, r2, format);
		res = std::regex_replace(res, r, format);
	}
	catch (const std::exception & e) {
		return res;
	}
	return res;
}

效能取捨
整數測試與效能小數測試與效能