如何在 Visual Studio 调试器命令行参数中包含百分比字符?

发布于 2024-12-11 16:51:31 字数 251 浏览 0 评论 0原文

我想在 Visual Studio 2010 SP1 中使用如下参数调试程序:“file-%04d.jpg”。

但是在项目属性>中输入这个字符串配置属性 > 调试 > 命令参数更改“%04”,导致argv[1]被设置为:“file-[一些未知符号]d.jpg”。

百分比字符似乎被解释为转义序列,这不是我想要的。这在 2008 年不会发生。

I want to debug a program in Visual Studio 2010 SP1 with an argument like: "file-%04d.jpg".

But entering this string in Project Properties > Config Properties > Debugging > Command Arguments changes the "%04", resulting in argv[1] being set to: "file-[some unknown symbol]d.jpg".

The percent character seems to be interpreted as an escape sequence which is not what I want. This does not happen in 2008.

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

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

发布评论

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

评论(1

赏烟花じ飞满天 2024-12-18 16:51:31

%xx 似乎被解释为 ascii 转义。
因此 %25 应该在参数列表中产生真正的 % 字符。

%xx seems to be interpreted as an ascii escape.
So %25 should result in a real % character in the argument list.

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