我有一个first.properties
文件,我正在读取该文件,跳过前 5 行并创建一个新文件,其余行为first.properties
. 这工作正常。但是我在新创建的文件中的每一行都有空格。我想删除这些空格。
我使用了以下代码:
@echo off
set new=0
setlocal ENABLEDELAYEDEXPANSION
for /F "skip=5" %%L in (first.properties) do (
echo %%L>>NewProjectsInfo.properties
)
endlocal
pause
first.properties
如下:
name=abcd
number=bcde
address=cdef
mobile=efgh
worklocation=ghij
请帮我删除空格。