C++小技巧---CString 转 double

常规的转换函数,无法去除多余的0。

CString doubleToCString(double data)
{
	CString strData;
	//判断数据是否小于0.000
	if (data < 0.0009) {
		strData = _T("0");
	}
	else
	{
		strData.Format(_T("%.3f"), data);
	}

	//去除字符串后面的0
	for (int i = strData.GetLength() - 1; i > 0; i--) {
		if (strData[i] == '0') {
			strData.Delete(i, 1);
			continue;
		}
		else if (strData[i] == '.') {
			strData.Delete(i, 1);
			break;
		}
		else {
			break;
		}
	}
	return strData;
}

double CStringToDouble(CString data)
{
	double dData;
	//判断字符串开通是否为0
	CString temp = data;
	while(1) {
		if (temp[0] != '0') {
			break;
		}
		if (temp.GetLength() == 0) {
			break;
		}
		temp.Delete(0, 1);//删除当前字符串第一个为0的字符
	}
	//去除字符串后面的0
	for (int i = temp.GetLength() - 1; i > 0; i--) {
		if (temp[i] == '0') {
			temp.Delete(i, 1);
			continue;
		}else if(temp[i] == '.'){
			temp.Delete(i, 1);
			break;
		}
		else {
			break;
		}
	}

	//判断字符串是否为
	if (temp.IsEmpty()) {
		dData = 0.000;
		return dData;
	}

	if (temp != temp.SpanIncluding(_T(".0123456789"))) {
		dData = 0.000;
		return dData;
	}
	dData = _ttof(data);
	return dData;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值