我在这里错过了什么吗? XD TrimRight 似乎不想工作

发布于 2024-11-02 03:45:37 字数 186 浏览 5 评论 0原文

好的,这是要演示的一小部分代码:

CString txt = _T("Hello World");
CString txt2 = txt;
txt2.TrimRight('W');
AfxMessageBox(txt2);

输出是“Hello World”。

我哪里不对劲?

Ok, here is the small portion of code to demonstrate:

CString txt = _T("Hello World");
CString txt2 = txt;
txt2.TrimRight('W');
AfxMessageBox(txt2);

The output is "Hello World".

What am I not getting right ?

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

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

发布评论

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

评论(1

老街孤人 2024-11-09 03:45:37

调用 txt2.TrimRight('W'); 会删除字符串右侧的所有字符“W”。由于“Hello World”不以“W”结尾,所以根本不会修剪任何内容。

The call txt2.TrimRight('W'); removes all characters 'W' from the right side of the string. Since "Hello World" does not end in 'W' nothing is trimmed at all.

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