- /***
- *判断一个字符串是否为纯数字
- */
- int Common::isDigitStr(QString src)
- {
- QByteArray ba = src.toLatin1();//QString 转换为 char*
- const char *s = ba.data();
- while(*s && *s>=‘0‘ && *s<=‘9‘) s++;
- if (*s)
- { //不是纯数字
- return -1;
- }
- else
- { //纯数字
- return 0;
- }
- }
时间: 2024-10-11 06:11:20