2个回答
展开全部
嘻嘻主要还是应用字符串类的
截取子串的函数Substring(int startIndex,int length)
参考的代码如下,VS2005编译通过
using System;
using System.Collections.Generic;
using System.Text;
namespace sln_extractno
{
class Program
{
static void Main(string[] args)
{
Console.Write("Enter your cellphone Number: ");
//把号码存进原串中
string myNo = Console.ReadLine();
//在原串中取子串,从第三位开始,长度为1
//注意,数组索引从0开始,故第一个参数值为2
string mySubNo = myNo.Substring(2, 1);
Console.WriteLine(mySubNo);
Console.ReadLine();
}
}
}
截取子串的函数Substring(int startIndex,int length)
参考的代码如下,VS2005编译通过
using System;
using System.Collections.Generic;
using System.Text;
namespace sln_extractno
{
class Program
{
static void Main(string[] args)
{
Console.Write("Enter your cellphone Number: ");
//把号码存进原串中
string myNo = Console.ReadLine();
//在原串中取子串,从第三位开始,长度为1
//注意,数组索引从0开始,故第一个参数值为2
string mySubNo = myNo.Substring(2, 1);
Console.WriteLine(mySubNo);
Console.ReadLine();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询