批处理脚本 - 提取右字符串

这用于从字符串末尾提取字符。

示例

@echo off 
set str = This message needs changed. 
echo %str% 

set str = %str:~-8% 
echo %str%

上面的程序需要注意的关键是,右字符串是通过使用 ~-'要提取的字符数'运算符来提取的。

输出

上述命令会产生以下输出。

This message needs changed. 
changed.

❮ batch_script_strings.html