如何在 Visual Studio 调试器命令行参数中包含百分比字符?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
%xx 似乎被解释为 ascii 转义。
因此 %25 应该在参数列表中产生真正的 % 字符。
%xx seems to be interpreted as an ascii escape.
So %25 should result in a real % character in the argument list.