不能使用echo %param%| findstr /r ...
甚至也不是echo !param!| findstr /r ...
。有關管道如何分析和處理的更多信息,請看這個問題和答案:Why does delayed expansion fail when inside a piped block of code。
使用的輔助(臨時)文件,如下所示:
@ECHO OFF
SETLOCAL EnableExtensions EnableDelayedExpansion
:testloop
set "param="
set /P "param=string to test (hit <Enter> to end)> "
if not defined param goto :endtest
>"%temp%\33605517.txt" echo(!param!
rem next line for debugging purposes
for /F "usebackq delims=" %%G in ("%temp%\33605517.txt") do set "_marap=%%G"
findstr /r ".*[<>:\"\"/\\|?*%%].*" "%temp%\33605517.txt" >nul
if %errorlevel% equ 0 (
echo !errorlevel! Invalid !param! [!_marap!]
) else (
echo !errorlevel! correct !param! [!_marap!]
)
goto :testloop
:endtest
ENDLOCAL
goto :eof
.*[<>:\"\"/\\|?*%%].*
正則表達式解釋:
.*
- 在一個字符串的前面的任何字符的零次或多個出現次數;
[<>:\"\"/\\|?*%%]
在組保留字符的任一個字符:
<
(小於);
>
(大於);
:
(colon);
"
(雙引號)轉義爲\"\"
(findstr和批解析器);
/
(正斜槓);
\
(反斜槓)轉義爲\\
(findstr);
|
(豎條或管);
?
(問號);
*
(星號);
%
(百分號)轉義(對於批解析器)爲%%
;實際上,%
is not reserved for NTFS
file system但需要在純cmd
和/或批處理腳本中進行特殊轉義;
.*
- 零個或多個出現在字符串末尾的任何字符。
這裏有更多的關於SO的一些問題的鏈接,包括Aacini,DBenham,Jeb(其他人)的詳盡答案。引人入勝,迷人的閱讀......
,並詳細How Command Line Parameters Are Parsed由大衛Deley,©2009(更新2014)
輸出:
string to test (hit <Enter> to end)> n<m
0 Invalid n<m [n<m]
string to test (hit <Enter> to end)> n>m
0 Invalid n>m [n>m]
string to test (hit <Enter> to end)> n:m
0 Invalid n:m [n:m]
string to test (hit <Enter> to end)> n/m
0 Invalid n/m [n/m]
string to test (hit <Enter> to end)> n\m
0 Invalid n\m [n\m]
string to test (hit <Enter> to end)> n|m
0 Invalid n|m [n|m]
string to test (hit <Enter> to end)> n?m
0 Invalid n?m [n?m]
string to test (hit <Enter> to end)> n*m
0 Invalid n*m [n*m]
string to test (hit <Enter> to end)> n"m
0 Invalid n"m [n"m]
string to test (hit <Enter> to end)> nm
1 correct nm [nm]
string to test (hit <Enter> to end)> nm.gat
1 correct nm.gat [nm.gat]
string to test (hit <Enter> to end)> n%m.gat
0 Invalid n%m.gat [n%m.gat]
string to test (hit <Enter> to end)>
到目前爲止您嘗試過什麼?請編輯您的文章分享你的企圖... – aschipfl
其實我沒有任何想法,我可以使用正則表達式這裏 – acer
對不起,它的Windows – acer