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", "");