說,如果我輸入創建一個批處理命令
mybatchfile hello
它會輸出: 「你好」
中的代碼會是這個樣子:
@echo off
echo %fileinputvalue%
「%fileinputvalue%」 是輸入值如「你好」
mybatchfile hi
它會輸出:「h我「
我找不到答案,所以這可能是不可能的。
說,如果我輸入創建一個批處理命令
mybatchfile hello
它會輸出: 「你好」
中的代碼會是這個樣子:
@echo off
echo %fileinputvalue%
「%fileinputvalue%」 是輸入值如「你好」
mybatchfile hi
它會輸出:「h我「
我找不到答案,所以這可能是不可能的。
所以你需要一個整潔批其轉換輸入'hi'到輸出'hello' ;-) – LotPings
如何解決你的問題,糾正錯別字而不是評論? – aschipfl
您應該將[SS64的CMD.EXE參考](http://ss64.com/nt/)書籤作爲Windows批處理語言的一般參考。對於這個特定問題,[參數和參數上的SS64頁面](https://ss64.com/nt/syntax-args.html)將會特別感興趣。 –