gpt4 book ai didi

windows - 如何检查变量是否包含批处理文件中的特殊字符

转载 作者:可可西里 更新时间:2023-11-01 11:12:09 27 4
gpt4 key购买 nike

如何检查批处理文件中的变量是否包含特殊字符?例如,如果我的变量包含文件名,则文件名不应包含 \/ < > | : * " ? 等字符这些。

@echo off
set param="XXX"
echo %param%| findstr /r "^[^\\/?%*:|"<>\.]*$">nul

if %errorlevel% equ 0 goto :next
echo "Invalid Attribute"

:next
echo correct

我使用此链接作为引用 regex for validating folder name & file name

最佳答案

您不能使用 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

.*[<>:\"\"/\\|?*%%].*正则表达式解释:

  • .* - 字符串前面的任何字符出现零次或多次;
  • [<>:\"\"/\\|?*%%]一组保留字符中的任何一个字符:
    • < (小于);
    • > (大于);
    • : (冒号);
    • " (双引号)转义为 \"\" (findstr 和批处理解析器);
    • / (正斜杠);
    • \ (反斜杠)转义为 \\ (查找字符串);
    • | (竖条或管道);
    • ? (问号);
    • * (星号);
    • % (百分号)转义(对于批处理解析器)为 %% ;事实上, % is not reserved for NTFS file system但需要在纯 cmd 中进行特殊转义和/或在批处理脚本中;
  • .* - 字符串末尾的任何字符出现零次或多次。

这里有一些关于 SO 的问题的更多链接,Aacini、DBenham、Jeb(以及其他人)给出了详尽的答案。令人兴奋、引人入胜的阅读……

并详细How Command Line Parameters Are Parsed作者:David 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)>

关于windows - 如何检查变量是否包含批处理文件中的特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33605517/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com