如果參數無效,我有一個批次將顯示使用情況。使用批量變量中的字符串修整字符串
例如,
Running "sample.bat update fuh"
:usageactions
set actions=%*
set toremove=update
set todisplay=%actions:%toremove% =%
echo Error: Invalid Arguments - '%todisplay%'.
echo Type sample.bat %toremove% -h for usage.
預期輸出:
Error: Invalid Arguments - 'fuh'.
Type sample.bat update -h for usage
但我的輸出是:
Error: Invalid Arguments - 'update'.
Type sample.bat update -h for usage
如何achived呢?任何幫助,將不勝感激。謝謝。
(順便說一句,請修改如果如此混亂的問題。)
該程序是否僅支持一個參數或多個參數? – LittleBobbyTables 2012-07-26 13:20:31
要參數但第二個參數應該是正確的。 – quinekxi 2012-07-26 13:22:29