发布网友 发布时间:2022-04-22 03:08
共9个回答
懂视网 时间:2022-05-10 09:07
Python中字符串处理的方法函数:str.isnumeric(): True if 只包含数字;otherwise False。注意:此函数只能用于unicode string
str.isdigit(): True if 只包含数字;otherwise False。
str.isalpha():True if 只包含字母;otherwise False。
str.isalnum():True if 只包含字母或者数字;otherwise False。
示例字符串:
str_1 = "123"
str_2 = "Abc"
str_3 = "123Abc"
代码处理过程:
#用isdigit函数判断是否数字 print(str_1.isdigit()) Ture print(str_2.isdigit()) False print(str_3.isdigit()) False #用isalpha判断是否字母 print(str_1.isalpha()) False print(str_2.isalpha()) Ture print(str_3.isalpha()) False #isalnum判断是否数字和字母的组合 print(str_1.isalnum()) Ture print(str_2.isalnum()) Ture print(str_1.isalnum()) Ture
注意:如果字符串中含有除了字母或者数字之外的字符,比如空格,也会返回False
严格解析:有除了数字或者字母外的符号(空格,分号,etc.)都会False
isalnum()必须是数字和字母的混合
isalpha()不区分大小写
热心网友 时间:2022-05-10 06:15
如果只是判断,可与用integer.parseint(string)如果是数字,就没有异常,如果有异常,就不是数字热心网友 时间:2022-05-10 07:33
楼主看方法:热心网友 时间:2022-05-10 09:07
String s = "safdj123";热心网友 时间:2022-05-10 10:59
正则表达式最好了热心网友 时间:2022-05-10 13:07
这个可以使用正则表达式^[0-9]*$来判断热心网友 时间:2022-05-10 15:31
用正则表达式可以判断热心网友 时间:2022-05-10 18:13
用正则表达式判断吧,具体的语法你可以在百度搜一下热心网友 时间:2022-05-10 21:11
正则表达式啊