- 批处理脚本教程
- 批处理脚本 - 首页
- 批处理脚本 - 概览
- 批处理脚本 - 环境
- 批处理脚本 - 命令
- 批处理脚本 - 文件
- 批处理脚本 - 语法
- 批处理脚本 - 变量
- 批处理脚本 - 注释
- 批处理脚本 - 字符串
- 批处理脚本 - 数组
- 批处理脚本 - 决策制定
- 批处理脚本 - 运算符
- 批处理脚本 - 日期和时间
- 批处理脚本 - 输入/输出
- 批处理脚本 - 返回代码
- 批处理脚本 - 函数
- 批处理脚本 - 进程
- 批处理脚本 - 别名
- 批处理脚本 - 设备
- 批处理脚本 - 注册表
- 批处理脚本 - 网络
- 批处理脚本 - 打印
- 批处理脚本 - 调试
- 批处理脚本 - 记录
- 批处理脚本资源
- 批处理脚本 - 快速指南
- 批处理脚本 - 有用资源
- 批处理脚本 - 讨论
批处理脚本 - 字符串右
这用于从字符串末尾中提取字符。
示例
@echo off set str = This message needs changed. echo %str% set str = %str:~-8% echo %str%
关于上个程序需要注意的关键是,使用~-'提取的字符数量'运算符可提取字符串右侧内容。
输出
上述命令输出如下。
This message needs changed. changed.
batch_script_strings.htm
广告