gpt4 book ai didi

regex - 在 .BAT 中使用正则表达式查找子字符串

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

如何检查批处理文件的字符串变量中是否包含子字符串?

例如:

set var1=foobarfoo

set regexp=.*bar.*

if [check var1 by regexp] echo "YES"

在我的例子中,它必须仅通过正则表达式进行检查,并且只能在 .bat 文件中进行检查。

最佳答案

调整找到的答案here给予

@echo off
set var1=foobarfoo
set "regexp=.*bar.*"
echo %var1%
echo %regexp%
setlocal enableDelayedExpansion
echo(%var1%|findstr /r /c:"%regexp%" >nul && (
echo FOUND
rem any commands can go here
) || (
echo NOT FOUND
rem any commands can go here
)

关于regex - 在 .BAT 中使用正则表达式查找子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29668698/

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