1. 程式人生 > >DOS批處理中文字替換

DOS批處理中文字替換

在DOS批處理中要將某一行中的部分文字替換掉, 今天找到辦法了.

set str=hello, this is a test, replace some characters using dos command
rem 將小寫開頭的hello替換為大寫開頭的Hello
set str2=%str:hello=Hello%
echo %str%
echo %str2%


得到的結果為:

hello, this is a test, replace some characters using dos command
Hello, this is a test, replace some characters using dos command