C# 字符串截取

C#截取字符串的經常使用方法有:split、Substring、Replace、removerem (1)split字符串   (1)取字符串的前i個字符string //取字符串的前i個字符it str=str.Substring(0,i);方法 //移除從i+1到str.Length的字符字符 str=str.Remove(i+1,str.Length);  (2)去掉字符串的前i個字符 st
相關文章
相關標籤/搜索