批处理中如何判断变量中包含指定字符

2024-11-25 17:11:23
推荐回答(3个)
回答1:

@echo off
for /f "delims=exe" %%i in ("dksexe") do if %%i=="" (echo 不
包括exe) else (echo 包括exe)

回答2:

我是接你的写的:
echo %%c|find "exe">nul&&set baohan_exe=true
if "%baohan_exe%"=="true" (
dosomething
) else (
dosomething
)

回答3:

for /f "Delims=" %%i in ('dir /b *.*')do (
if %%~xi==exe echo 包含“exe”||echo 不包含“exe”)