查看调试监视中的子字符串

发布于 2024-08-15 09:05:20 字数 43 浏览 9 评论 0原文

在调试会话期间在“监视”窗口中查看字符串时是否可以看到字符串的子字符串?

Is it possible to see a substring of a string when looking a string in the Watch window during a debugging session?

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

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

发布评论

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

评论(3

无法回应 2024-08-22 09:05:20

是的 - 只是观看

text.Substring(1, 15)

或其他什么。

当你尝试这个时发生了什么?

编辑:“不起作用”并不是对发生的事情的真正描述。我刚刚在VS2008中亲自尝试过,效果很好。当您迈出一步时,该值会变灰,但值框的右侧有一个小“刷新”按钮...当您单击该按钮时,它将重新计算表达式。

如果您没有遇到这种情况,请描述您正在发生的情况。

Yes - just watch

text.Substring(1, 15)

or whatever.

What happened when you tried this?

EDIT: "doesn't work" isn't really a description of what happened. I've just tried this myself in VS2008, and it worked fine. The value greys out when you step, but there's a little "refresh" button on the right hand side of the value box... when you click that, it will re-evaluate the expression.

If that's not happening for you, please describe what is happening for you.

遮了一弯 2024-08-22 09:05:20

我倾向于使用 立即窗口这类事情,但正如 Jon Skeet 所说,您也可以直接在监视窗口中执行此操作。

I tend to use the Immediate Window for this sort of thing, but as Jon Skeet has said you can also do it directly in the Watch Window.

疯了 2024-08-22 09:05:20

当然,只需放入一个新的监视条目,其中包含您想要查看的子字符串:-

sure, just put in a new watch entry with the substring you want to see :-

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