如何在VC ++ CString中验证有效的整数和浮点数

时间:2010-10-27 05:54:57

标签: c++ mfc

有人能告诉我一种有效的方法来验证CString对象中存在的数字是有效整数还是浮点数?

1 个答案:

答案 0 :(得分:6)

使用_tcstol()_tcstod()

bool IsValidInt(const CString& text, long& value)
{
    LPCTSTR ptr = (LPCTSTR) text;
    LPTSTR endptr;
    value = _tcstol(ptr, &endptr, 10);
    return (*ptr && endptr - ptr == text.GetLength());
}

bool IsValidFloat(const CString& text, double& value)
{
    LPCTSTR ptr = (LPCTSTR) text;
    LPTSTR endptr;
    value = _tcstod(ptr, &endptr);
    return (*ptr && endptr - ptr == text.GetLength());
}

编辑:修改了代码,以遵循评论中提供的出色建议。