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