我正在测试通过 C# 剪切字符串,但我没有得到正确的结果。它仍然显示全文exactString。
String exactString = ABC@@^^@@DEF
char[] Delimiter = { '@', '@', '^', '^', '@', '@' };
string getText1 = exactString.TrimEnd(Delimiter);
string getText2 = exactString.TrimStart(Delimiter);
MessageBox.Show(getText1);
MessageBox.Show(getText2);
输出:
ABC@@^^@@DEF
对于 getText1 和 getText2。
正确的 OUTPUT 应该是 getText1 的 ABC 和 getText2 的 DEF。
我如何解决它?谢谢。