批处理脚本 - 提取右字符串
这用于从字符串末尾提取字符。
示例
@echo off set str = This message needs changed. echo %str% set str = %str:~-8% echo %str%
上面的程序需要注意的关键是,右字符串是通过使用 ~-'要提取的字符数'运算符来提取的。
输出
上述命令会产生以下输出。
This message needs changed. changed.
这用于从字符串末尾提取字符。
@echo off set str = This message needs changed. echo %str% set str = %str:~-8% echo %str%
上面的程序需要注意的关键是,右字符串是通过使用 ~-'要提取的字符数'运算符来提取的。
上述命令会产生以下输出。
This message needs changed. changed.
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。