为什么 c# string.TrimStart 会修剪参数的尾随空格?

发布于 2024-09-29 20:11:35 字数 329 浏览 2 评论 0原文

在代码中:

string s = "Executing".TrimStart(@"Exec ".ToCharArray());

或者

string s = "Executing".TrimStart("Exec ".ToCharArray());

s 将等于 "uting",尽管尾随空格字符,而

bool t = "Executing".StartsWith("Exec ");

t 将等于 False?

In code:

string s = "Executing".TrimStart(@"Exec ".ToCharArray());

or

string s = "Executing".TrimStart("Exec ".ToCharArray());

s will equal "uting" in spite of the trailing space character while

bool t = "Executing".StartsWith("Exec ");

t will equal False?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-10-06 20:11:35

TrimStartchar[] 参数表示一组字符,而不是字符串。换句话说,它将删除 char[] 数组中字符串开头的所有连续字符 - 它不会检查字符是否与序列匹配数组中的字符数。 (如果它确实这样做了,那么接受 string 不是更有意义吗?)

The char[] argument to TrimStart implies a set of characters, not a string. In other words it will remove all the consecutive characters from the start of the string that are in the char[] array -- it will not check that the characters match the sequence of characters in the array. (If it did do that, wouldn't it make more sense for it to accept a string?)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文