- 批处理脚本教程
- 批处理脚本 - 首页
- 批处理脚本 - 概览
- 批处理脚本 - 环境
- 批处理脚本 - 命令
- 批处理脚本 - 文件
- 批处理脚本 - 语法
- 批处理脚本 - 变量
- 批处理脚本 - 注释
- 批处理脚本 - 字符串
- 批处理脚本 - 数组
- 批处理脚本 - 决策制定
- 批处理脚本 - 运算符
- 批处理脚本 - 日期和时间
- 批处理脚本 - 输入/输出
- 批处理脚本 - 返回代码
- 批处理脚本 - 函数
- 批处理脚本 - 进程
- 批处理脚本 - 别名
- 批处理脚本 - 设备
- 批处理脚本 - 注册表
- 批处理脚本 - 网络
- 批处理脚本 - 打印
- 批处理脚本 - 调试
- 批处理脚本 - 日志记录
- 批处理脚本资源
- 批处理脚本 - 快速指南
- 批处理脚本 - 实用资源
- 批处理脚本 - 讨论
批处理脚本 - 替换字符串
若要将子字符串替换为另一字符串,请使用字符串替换特征。
示例
@echo off set str=This message needs changed. echo %str% set str=%str:needs=has% echo %str%
上述程序的关键之处是,该示例通过语句 %str:needs = has% 替换单词“needs” 为字符串“has”。
输出
上述命令生成以下输出。
This message needs changed. This message has changed.
batch_script_strings.htm
广告