C#如何删除字符串最后一位?

2024-12-30 14:58:42
推荐回答(5个)
回答1:

string s = "123456";
int lastIndex = s.LastIndexOf(s);
s = s.Remove(lastIndex);
这样就删去了字符串s的最后一位

回答2:

string s = "....";
s = s.Substring(0, s.Length - 1);

回答3:

string s="dlsjflsj";s=s.substring(0,s.lengh-1);

回答4:

string s =object.Tostring()
if(!string.IsNullOrEmpty(s))
s = s.Substring(0, s.Length - 1);

回答5:

string str="fdfsd";
string newstr=Strsub(len(str)-1,1);