这用于通过字符串中字符的位置提取子字符串。
Mid String - 示例
@echo off set str=HelloLearnfk echo %str% set str=%str:~5,10% echo %str%
关于上述程序,需要注意的关键是〜5,10用于指定需要显示的字符,在这种情况下,无涯教程希望show character5到10。
上面的命令产生以下输出。
HelloLearnfk Learnfk
参考链接
https://www.learnfk.com/batch-script/batch-script-mid-string.html
标签:set,String,无涯,Mid,echo,str,HelloLearnfk From: https://blog.51cto.com/u_14033984/8256897