8

我正在读取文件并解析其内容。我需要确保一个CString值只包含数字。我可以实现它的不同方法是什么?

示例代码:

Cstring Validate(CString str)
{
  if(/*condition to check whether its all numeric data in the string*/)
  {
     return " string only numeric characters";
  }
  else
  {
     return "string contains non numeric characters";
  }
}
4

2 回答 2

19

您可以遍历所有字符并使用函数检查isdigit字符是否为数字。

#include <cctype>

Cstring Validate(CString str)
{
    for(int i=0; i<str.GetLength(); i++) {
        if(!std::isdigit(str[i]))
            return _T("string contains non numeric characters");
    }
    return _T("string only numeric characters");
}

另一个不使用isdigit但仅使用 CString 成员函数的解决方案使用SpanIncluding

Cstring Validate(CString str)
{
    if(str.SpanIncluding("0123456789") == str)
        return _T("string only numeric characters");
    else
        return _T("string contains non numeric characters");
}
于 2012-10-08T07:24:22.923 回答
0

你可以使用CString::Find

int Find( TCHAR ch ) const;

int Find( LPCTSTR lpszSub ) const;

int Find( TCHAR ch, int nStart ) const;

int Find( LPCTSTR pstr, int nStart ) const;

例子

CString str("The stars are aligned");
int n = str.Find('e')
if(n==-1)   //not found
else        //found

见这里在MSDN

于 2012-10-08T10:32:07.500 回答