- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的 ctype.h 中有函数 isnumber()。我在 http://www.cplusplus.com/reference/cctype/ 中都没有的书中找不到此函数的引用资料供咨询。我打算通过一个简单的例子来检测和显示 isdigit() 和 isnumber() 之间的区别,但是没有(此外,函数无法检测到 U+0C6A、U+0ED2 和 ½)。有什么不同吗?我该如何解决?
int main(int, char *[])
{
string text("Hello½123, Poly౪ ໒girl0.5!!!");
decltype(text.size()) punct = 0, alpha = 0, number = 0, space = 0, digit = 0, graf = 0;
for(auto i : text) {
if(ispunct(i)){
cout << i << "<punct ";
++punct;
}
if(isalpha(i)) {
cout << i << "<alpha ";
++alpha;
}
if(isnumber(i)) {
cout << i << "<number ";
++number;
}
if(isdigit(i)) {
cout << i << "<digit ";
++digit;
}
if(isgraph(i)) {
cout << i << "<graph ";
++graf;
}
if(isspace(i))
++space;
}
cout << endl << "There is " << endl;
cout << punct << " puncts," << endl;
cout << alpha << " alphas," << endl;
cout << number << " numbers," << endl;
cout << digit << " digits," << endl;
cout << graf << " graphs," << endl;
cout << space << " spaces" << endl;
cout << "in " << text << endl;
return 0;
}
部分结果:
...
5 numbers,
5 digits,
23 graphs,
2 spaces
in Hello½123, Poly౪ ໒girl0.5!!!
最佳答案
isnumber()
可能是特定于 Apple 的 C++ 方法(我手头没有 Mac 可以检查)。您可以在 Apple dev guide 中看到它:
The
isnumber()
function behaves similarly toisdigit()
, but may recognize additional characters, depending on the current locale setting.
此外,isnumber()
在 Linux 上没有声明:我在 Linux 4.7.2 上使用 g++ 6.1.1 并得到错误:
g++ a.cpp
a.cpp: In function 'int main(int, char**)':
a.cpp:20:17: error: 'isnumber' was not declared in this scope
if (isnumber(i)) {
^
我也是用clang3.8.1测试的:
clang++ a.cpp --std=c++11
a.cpp:20:7: error: use of undeclared identifier 'isnumber'
if (isnumber(i)) {
^
关于c++ - isdigit() 和 isnumber() 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39204080/
Kepp 在使用 Character.isDigit() 时遇到错误 我在其他地方查找过它并在那里进行了良好的测试,但我在这里不断遇到此错误。 Scanner scnr = new Scanner
我想创建一个算法来检查用户是否输入了有效的电话号码(仅限数字)。该程序应不断提示用户输入电话号码,直到它是严格的数字。我想出了以下内容。 程序限制:必须使用 malloc(realloc 可以),ph
我正在尝试验证 1 或 2 的输入。但是,使用此代码,如果您输入字母,则会导致程序崩溃。 如何解决这个问题? System.out.print("Choice: "); userSelection
这个问题已经有答案了: Check if input is float else stop (6 个回答) 已关闭 8 年前。 所以,我正在创建一个计算三角形面积的程序,我需要它来告诉用户他是否输入了
当我尝试使用带有汉字的isdigit() 函数时,它在 Debug模式下的Visual Studio 2013 中报告断言,但在 Release模式下没有问题。 我想如果这个函数是判断参数是否为数字,
我正在创建一个将十进制值转换为二进制值的程序。我遇到的问题是,在我的 if 语句中,我正在检查我的 int decimal 变量的用户输入是否包含数字,然后再继续转换值,但是当它是数字时,它将它们视为
当我输入一个数字并用 isdigit 测试时,它总是返回 false,为什么? #include using namespace std; int main() { int num;
这个问题在这里已经有了答案: how to check if given c++ string or char* contains only digits? (8 个答案) 关闭 6 年前。 我想检
#include #include #include void main() { clrscr(); int a; cout>a; if(isdigit(a))
我需要使用 NLTK 模块进行一些文字处理,但出现此错误:AttributeError: 'tuple' 对象没有属性 'isdigit' 有人知道如何处理这个错误吗? Traceback (most
我总是通过使用 isdigit() 函数将任何长度为 2 的数字字符串检测为非数字,这是代码: void testdigi(){ char* tt="22"; char* tt2= "
为什么 isdigit 没有按预期工作。我正在尝试检查输入是否为数字。如果输入是数字,则打印 True 否则打印 False。 #include #include int main() { i
我有一个函数接受用户输入的整数。 所以我有: scanf("%d, &x); 然后,函数: test(int x); 在 test() 中,我想检查输入的是数字还是字符,所以我尝试了: if (isd
我正在尝试检查第三个命令行是否为数字,所以我做了 int n; if (!isdigit(argv[3])) { fprintf(stderr, "n MUST be a nu
当我尝试在命令行上将数字传递到我的应用程序时,以下代码出现奇怪的段错误。 int offset = 3; int main(int argc, char *argv[]) { // Check
我正在做一些 IO,其中一行是 number number,但是当我使用时, if(isdigit(buffer) > 0) { ... } 它失败了,我相信这是因为每个数字之间有一个空格。有没有办法
这是我的代码: #include #include int main(void) { int limit; float sum=0; while(1){ p
先看我的代码: #include #include using namespace std; int main() { int a,b; cout > a >> b;
你好,我想检查我的程序,如果用户输入的不是数字,而不是输入数字。 所以我做了这个功能 void ValidationController::cinError(int *variable){ i
我正在尝试通过遍历整个字符串并输出整数来测试字符串是否包含整数。我的方法涉及将字符串转换为 c 字符串,atoi c 字符串,然后使用 isdigit 函数测试它是否为整数。由于某些未知原因,isdi
我是一名优秀的程序员,十分优秀!