常用字符串方法string str="1234567890"; int i=3; // 1 取字符串的前i个字符str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); // 2 去掉字符串的前i个 ...
確定! 回上一頁