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:,=.%