Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 CMD shell 中打开一个 .exe 文件,如下所示: d:/program1.exe text1 text2 text3 text4 text5 如何使用 text3 text4 text5 作为单个参数?谢谢
您应该在包含空格的参数周围使用引号:
d:/program1.exe text1 text2 "text3 text4 text5"
当你像这样调用你的程序时,ParamStr(1) 是'text1',ParamStr(2) 是'text2',ParamStr(3) 是'text3 text4 text5'。