C语言 判断字符是不是是一个数字的两种方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言 判断字符是不是是一个数字的两种方法相关的知识,希望对你有一定的参考价值。

内部函数

#include<stdio.h>
#include<ctype.h>
int main()

    char num;
    scanf("%c",&num);
    if(isdigit(num)==0)
    
        printf("不是数字\\n");
    
    else
    
        printf("是数字\\n");
    
return 0;

自定义函数

#include<stdio.h>
#include<ctype.h>
int main()

    char num;
    scanf("%c",&num);
    if(num>='0' && num<='9')
        printf("是数字\\n");
    else
        printf("不是数字\\n");
return 0;

参考技术A if(ch>="0" && ch<="9")
if(ch>=48 && ch<=57)
if((ch-'0')>=0 && (ch-'0')<=9)

如何判断一个字符串中是不是都是数字

Java中判断字符串是否全是数字:
可以使用正则表达式:

public boolean isNumeric(String str)
Pattern pattern = Pattern.compile("[0-9]*");
Matcher isNum = pattern.matcher(str);
if (!isNum.matches())
return false;

return true;


但是这个方法并不安全,没有对字符串进行空校验。
在程序执行的时候很容易抛出异常。
例如执行:

public static void main(String[] args)

String str = null;
System.out.println(BarcodeChecksum.INSTANCE.isNumeric(str));



就会抛出异常:

Exception in thread "main" java.lang.NullPointerException
at java.util.regex.Matcher.getTextLength(Matcher.java:1140)
at java.util.regex.Matcher.reset(Matcher.java:291)
at java.util.regex.Matcher.(Matcher.java:211)
at java.util.regex.Pattern.matcher(Pattern.java:888)
at com.ossez.bcu.util.BarcodeChecksum.isNumeric(BarcodeChecksum.java:37)
at com.ossez.bcu.util.BarcodeChecksum.main(BarcodeChecksum.java:53)

所以这个方法并不准确。

如果执行:

public static void main(String[] args)
String str = "";
System.out.println(BarcodeChecksum.INSTANCE.isNumeric(str));


将会返回 true。
这说明这个方法没有对空字符串进行校验。
可以使用 Apache 的 StringUtils.isNumeric() 函数进行判断。
这个函数位于 org.apache.commons.lang.StringUtils; 中。
但是,需要注意,如果传入参数为 "" 同样也会你存在判断不准确的情况,这时候需要首先对需要进行判断的参数进行非空校验,然后删除传入数据中的空格。

public static void main(String[] args)
String str = "";
System.out.println(StringUtils.isNumeric(str));


上面这个函数将会返回 true。
参考技术A 方法一:利用正则表达式
public class Testone
public static void main(String[] args)
String str="123456";
boolean result=str.matches("[0-9]+");
if (result == true)
System.out.println("该字符串是纯数字");elseSystem.out.println("该字符串不是纯数字");方法二:利用Pattern.
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Testone
public static void main(String[] args)
String str="123456";
Pattern pattern = Pattern.compile("[0-9]1,");
Matcher matcher = pattern.matcher((CharSequence)str);
boolean result=matcher.matches();
System.out.println("该字符串是纯数字");elseSystem.out.println("该字符串不是纯数字");

以上是关于C语言 判断字符是不是是一个数字的两种方法的主要内容,如果未能解决你的问题,请参考以下文章

Python判断变量的数据类型的两种方法

javascript 判断数组中的重复内容的两种方法 by FungLeo

两种方法判断一个字符串是否为另外一个字符串旋转之后的字符串。(C语言)

【实例】用PowerQuery计算字符串中指定字符个数的两种方法

C# 实现数字字符串左补齐0的两种方法

php在数字前面补0得到固定长度数字的两种方法