Loading
0

C#如何截取字符串中指定字符之间的部分

技术小学生微信公众号
腾讯云服务器大促销。
华为服务器
C#如何截取字符串中指定字符之间的部分
 

string stra = "abcdefghijk";  
string strtempa = "c";  
string strtempb = "j";  
//我们要求c---g之间的字符串,也就是:defghi  
//求得strtempa 和 strtempb 出现的位置:  
int IndexofA = stra.IndexOf(strtempa);  
int IndexofB = stra.IndexOf(strtempb);  
string Ru = stra.Substring(IndexofA + 1, IndexofB - IndexofA -1);  
Console.WriteLine("Ru = " + Ru); //----这就是你要的结果  
Console.ReadLine();

技术小学生微信公众号
华为服务器
腾讯云服务器大促销。

声明:站长码字很辛苦啊,转载时请保留本声明及附带文章链接:https://blog.tag.gg/showinfo-23-36065-0.html
亲爱的:若该文章解决了您的问题,可否收藏+评论+分享呢?
上一篇:c#进程打开程序
下一篇:C#文件排序方法