本帖最后由 honeys天空s 于 2013-11-30 21:58 编辑
大家看下这段代码 有什么问题吗?
string txt = "22dsl45asjj67asjkl2345"; //预设一段文本
string[] t1 = new string[txt.Length]; //声明一个txt.length的字符串类型数组
int j;//定义返回参数
for (int i = 0; i < 22; i++)//将每一个字符分别判断能否转为int类型,如果为true,则打印转换结果
{
if (int.TryParse(t1, out j) == true)
{
Console.WriteLine("提取的数字为" + j);
}
}
Console.ReadKey(); |