- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在做一些 IO,其中一行是 number number
,但是当我使用时,
if(isdigit(buffer) > 0) { ... }
它失败了,我相信这是因为每个数字之间有一个空格。有没有办法在使用 isdigit() 时不包含空格?或者有其他选择吗?谢谢。
最佳答案
如评论中所述,isdigit()
和 friend 处理字符,而不是字符串。像这样的东西会做你想做的事:
bool is_digit_or_space(char * buffer) {
while ( *buffer ) {
if ( !isdigit(*buffer) && !isspace(*buffer) ) {
return false;
}
++buffer;
}
return true;
}
完整代码示例:
#include <stdio.h>
#include <ctype.h>
#include <stdbool.h>
bool is_digit_or_space(char * buffer) {
while ( *buffer ) {
if ( !isdigit(*buffer) && !isspace(*buffer) ) {
return false;
}
++buffer;
}
return true;
}
int main(void) {
char good[] = "123 231 983 1234";
char bad[] = "123 231 abc 1234";
if ( is_digit_or_space(good) ) {
printf("%s is OK\n", good);
} else {
printf("%s is not OK\n", good);
}
if ( is_digit_or_space(bad) ) {
printf("%s is OK\n", bad);
} else {
printf("%s is not OK\n", bad);
}
return 0;
}
输出:
paul@local:~/src/c/scratch$ ./isdig
123 231 983 1234 is OK
123 231 abc 1234 is not OK
paul@local:~/src/c/scratch$
关于c - isdigit() 包括检查空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19482941/
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
我是一名优秀的程序员,十分优秀!