当前位置: 编程技术>.net/c#/asp.net
c#中判断字符串是不是数字或字母的方法
来源: 互联网 发布时间:2014-10-22
本文导语: 一、判断字母 代码如下:string str = Console.ReadLine();if (char.isLetter(str)){}else if (char.IsDigit(str)){}if(ch>='a'&&ch='A'&&ch255 因为汉字是大字符集二、判断输入的是不是数字 代码如下:try{int n = 0;n = int.Parse(this.textBox1.Text.Trim());}catch{MessageBox.Sho...
一、判断字母
string str = Console.ReadLine();
if (char.isLetter(str))
{
}
else if (char.IsDigit(str))
{
}
if(ch>='a'&&ch='A'&&ch255 因为汉字是大字符集
二、判断输入的是不是数字
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='A'&&ch255 因为汉字是大字符集
二、判断输入的是不是数字
代码如下:
try
{
int n = 0;
n = int.Parse(this.textBox1.Text.Trim());
}
catch
{
MessageBox.Show("你输入的不是数字~!");
}
也可以用Char.isNumber(str[i])一个一个字符判断。