Cスクリプトを呼び出して、ユーザーが英語のアルファベットから文字を入力したかどうかを確認する簡単な方法はありますか?私はこのようなことを考えています:
if (variable == a - z) {printf("You entered a letter! You must enter a number!");} else (//do something}
ユーザーが文字を入力せず、代わりに数字を入力することを確認したいと思います。アルファベットの各文字を手動で入力せずにすべての文字を引っ張る簡単な方法があるかどうか疑問に思います:)
#include <ctype.h>
if (isalpha(variable)) { ... }
文字ではなく、10進数自体をテストすることをお勧めします。 isdigit 。
#include <ctype.h>
if(isdigit(variable))
{
//valid input
}
else
{
//invalid input
}
isalpha()は、一度に1文字をテストします。ユーザーが23A4のような数字を入力した場合は、すべての文字をテストする必要があります。あなたはこれを使うことができます:
bool isNumber(char *input) {
for (i = 0; input[i] != '\0'; i++)
if (isalpha(input[i]))
return false;
return true;
}
// accept and check
scanf("%s", input); // where input is a pointer to a char with memory allocated
if (isNumber(input)) {
number = atoi(input);
// rest of the code
}
Atoi()はスレッドセーフではなく、非推奨の関数であることに同意します。その代わりに別の単純な関数を書くことができます。
Isalpha関数とは別に、次のように実行できます。
char vrbl;
if ((vrbl >= 'a' && vrbl <= 'z') || (vrbl >= 'A' && vrbl <= 'Z'))
{
printf("You entered a letter! You must enter a number!");
}
strto*()
ライブラリ関数はここで役に立ちます:
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#define SIZE ...
int main(void)
{
char buffer[SIZE];
printf("Gimme an integer value: ");
fflush(stdout);
if (fgets(buffer, sizeof buffer, stdin))
{
long value;
char *check;
/**
* strtol() scans the string and converts it to the equivalent
* integer value. check will point to the first character
* in the buffer that isn't part of a valid integer constant;
* e.g., if you type in "12W", check will point to 'W'.
*
* If check points to something other than whitespace or a 0
* terminator, then the input string is not a valid integer.
*/
value = strtol(buffer, &check, 0);
if (!isspace(*check) && *check != 0)
{
printf("%s is not a valid integer\n", buffer);
}
}
return 0;
}
いくつかの簡単な条件でそれを行うこともできます 文字がアルファベットかどうかを確認してください
if((ch>='a' && ch<='z') || (ch>='A' && ch<='Z'))
{
printf("Alphabet");
}
または、ASCII値を使用することもできます
if((ch>=97 && ch<=122) || (ch>=65 && ch<=90))
{
printf("Alphabet");
}
int strOnlyNumbers(char *str)
{
char current_character;
/* While current_character isn't null */
while(current_character = *str)
{
if(
(current_character < '0')
||
(current_character > '9')
)
{
return 0;
}
else
{
++str;
}
}
return 1;
}