这用于从字符串末尾提取字符。
Right String - 示例
@echo off set str=This message needs changed. echo %str% set str=%str:~-8% echo %str%
关于上述程序,需要注意的关键是,使用〜-"要提取的字符数"运算符来提取字符串的右边。
上面的命令产生以下输出。
This message needs changed. changed.
参考链接
https://www.learnfk.com/batch-script/batch-script-right-string.html
标签:needs,Right,String,changed,无涯,echo,set,str,message From: https://blog.51cto.com/u_14033984/8259444