android 幾個常常用到的字符串的截取

幾個常常用到的字符串的截取 string str="123abc456"; int i=3; 1 取字符串的前i個字符    str=str.Substring(0,i); // or  str=str.Remove(i,str.Length-i);  2 去掉字符串的前i個字符:    str=str.Remove(0,i);  // or str=str.Substring(i);  3 從右
相關文章
相關標籤/搜索