Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个要求,我需要使用 DOS 命令替换字符串中的特定字符。
例如,如果我的字符串是“1,2,3,4”,我需要通过将每个“,”替换为“。”来获得结果“1.2.3.4”。特点。
以下将为您工作
@echo off set string1=1,2,3,4 set string2=%string1:,=.% echo %string2%
这将使您知道要做什么,而不是确切地知道如何让字符串开始。
set str=1,2,3,4 set str=%str:,=.%