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.
@echo off set servers=hello@how@are dd @you set servers=%servers:@=,% for %%i in (%servers%) do ( echo %%i ) pause
这输出: 你好 , 你 好吗
但我想: 你好, 你 好吗 ?
任何帮助都会很棒。谢谢!!
这可能会解决这个问题:
@echo off setlocal enabledelayedexpansion set lf=^ :: leave the two blank lines above set servers=hello@how@are dd @you set servers=%servers:@=!lf!% echo !servers! pause