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

2024年11月15日 14:08
有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", "");