[20190219]變態的windows批處理6.txt
[20190219]變態的windows批處理6.txt
--//工作需要要寫一個批處理,要將引數1取2,結尾的字元.實際上就是要去掉引數前面的磁碟機代號.
--//看了一下如何取字串的操作.以為可以寫成如下:
R:\>cat t1.bat
@ echo off
set a=%1:~2,200%
echo.
echo %a%
echo.
--//執行輸出如下:
R:\>t1 d:\tools
d:\tools:~2,200
--//感覺就像字串拼接,字串操作不知道如何支援引數.修改如下,先必須使用一個變數接收引數,再處理就ok了.
R:\>cat t1.bat
@ echo off
set a=%1
set a=%a:~2,200%
echo.
echo %a%
echo.
R:\>t1 d:\tools
\tools
--//這樣就ok了,還學會echo.的使用(中間不能有空格),這樣能輸出一行空行.
--//windows的批處理設定的太不規範了.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2636320/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- [20170425]變態的windows批處理1.txtWindows
- [20170425]變態的windows批處理2.txtWindows
- Windows批處理中的變數和值Windows變數
- [20171225]變態的windows批處理4.txtWindows
- [20210510]變態的windows批處理7.txtWindows
- Windows批處理命令Windows
- Windows批處理學習(二)——批處理(3)薦Windows
- [20211207]變態的windows批處理10.txtWindows
- [20211011]變態的windows批處理9.txtWindows
- [20180116]變態的windows批處理5.txtWindows
- windows批處理之一:字串處理Windows字串
- Windows批處理檔案Windows
- [20190219]windows批處理如何將結果儲存到引數裡面.txtWindows
- Windows批處理命令專題Windows
- windows sql loader批處理WindowsSQL
- 關於批處理中的變數變數
- [20170611]變態的windwos批處理3.txt
- 開啟windows批處理大門Windows
- 部分Windows批處理指令碼整理Windows指令碼
- windows批處理之三:for迴圈Windows
- windows刪除檔案的批處理操作Windows
- 在linux中生成windows的批處理LinuxWindows
- windows cmt bat批處理中的註釋WindowsBAT
- 07 Windows批處理之檔案操作Windows
- 批處理-刪除環境變數變數
- Windows 批處理之DATE命令的使用方法Windows
- 04 Windows批處理中的條件執行Windows
- windows 批處理備份目錄指令碼Windows指令碼
- Windows10系統優化(批處理)Windows優化
- windows批處理之二:基礎知識Windows
- Windows下統計埠連結數的批處理Windows
- [windows]批處理獲取時間的long型值Windows
- 批處理框架框架
- JDBC 批處理JDBC
- 碎片批處理
- 批處理命令
- 批處理概述
- 修改windows遠端桌面連線埠-批處理Windows