c#中判断字符串是不是数字或字母的方法
程序员文章站
2024-02-14 13:21:58
一、判断字母复制代码 代码如下:string str = console.readline();if (char.isletter(str)){}else if (char...
一、判断字母
string str = console.readline();
if (char.isletter(str))
{
}
else if (char.isdigit(str))
{
}
if(ch>='a'&&ch<='z') 小写字母
if(ch>='a'&&ch<='z') 大写字母
数字也一样。
判断汉字一般是输入 >255 因为汉字是大字符集
二、判断输入的是不是数字
try
{
int n = 0;
n = int.parse(this.textbox1.text.trim());
}
catch
{
messagebox.show("你输入的不是数字~!");
}
也可以用char.isnumber(str[i])一个一个字符判断。
复制代码 代码如下:
string str = console.readline();
if (char.isletter(str))
{
}
else if (char.isdigit(str))
{
}
if(ch>='a'&&ch<='z') 小写字母
if(ch>='a'&&ch<='z') 大写字母
数字也一样。
判断汉字一般是输入 >255 因为汉字是大字符集
二、判断输入的是不是数字
复制代码 代码如下:
try
{
int n = 0;
n = int.parse(this.textbox1.text.trim());
}
catch
{
messagebox.show("你输入的不是数字~!");
}
也可以用char.isnumber(str[i])一个一个字符判断。
上一篇: c# 关闭窗体时提示的小例子