如何从批处理脚本中的变量中删除字符。
我必须创建一个我使用批处理脚本的CSV文件。我有一个最后一个字段,其中值表示为“ 0”或“ 1”。 我必须删除,并只取值0或1。
我写了像这样的代码:
<nul set /p test=%%S >> %fileDate%
如何从变量
中删除, for %%f in (*.sent) do (
for /f "tokens=3" %%S IN ('FIND "Status" "%%f"') DO (
<nul set /p test=%%S >> %fileDate%
set test=%%S
set test=%test:,= %
echo %test% >>%fileDate%
goto tests2
)
:tests2
)
这是我的代码,我也尝试过使用子字符串,然后使用echo将输出发送到文件。但是,由于我使用了@ECHO OFF,它在CSV文件中关闭了发送回声的功能