c# .net 怎么去除某个字符串末尾的一些字符?

2024-11-15 14:08:05
推荐回答(3个)
回答1:

string s = "123sabcd";
s=s.Remove(s.LastIndexOf("abcd"));
Console.WriteLine(s);

回答2:

string itemvalue = "xxxabcd".TrimEnd("abcd".ToCharArray());

回答3:

string test01 = " xxxabcd ";
test01 = test01.Replace("abcd", "");