visual studio Python tools plugin command line: pass '%09' as a string and NOT have it be interpreted as tab -
visual studio Python tools plugin command line: pass '%09' as a string and NOT have it be interpreted as tab -
i'm in visual studio 2010 debugger using python tools plugin (which fabulous way). set command line args 'bon7%09/13' , want passed in string. visual studio tells me have 2 command line args, not one: "bon7" , "/13". because %09 ascii code tab, , it's converting char. don't want conversion. how block it? tried usual escapes (single quotes around string, double quotes around string, backslash in front end of %) none of help. how create visual studio treat command line arg pure text? it's worth, doesn't convert %09 when run command line without visual studio. also, tried same thing in c# works fine there.
you seek work around of using %3709
if consumed described should create %09
.
visual-studio command-line tabs
Comments
Post a Comment