char[] temp = textBox1.Text.ToCharArray();
int lx类型 = new int[temp.Length];
for (int i = 0; i < temp.Length; i++)
{
switch (Char.IsLetter(temp[i]))
{
case true:
lx类型[i] = 1;
break;
case false:
switch (char.IsDigit(temp[i]))
{
case true:
lx类型[i] = 2;
break;
case false:
lx类型[i] = 3;
break;
}
break;
}
}
这段程序就是把string放到一个char数组
循环判定每一位,如果是字母类型置1,如果是数字类型置2,如果不是则置3
可以粗略认为3就是中文,1就是字母,就行了
温馨提示:内容为网友见解,仅供参考