gpt4 book ai didi

正则表达式匹配文件夹和所有子文件夹

转载 作者:行者123 更新时间:2023-12-04 13:37:46 26 4
gpt4 key购买 nike

我需要为备份排除过滤器编写一个正则表达式来排除一个文件夹及其所有子文件夹。

我需要匹配以下内容
folder1/statistics
folder1/statistics/*
folder2/statistics
folder2/statistics/*

我想出了这个与文件夹统计信息相匹配的正则表达式,但与统计文件夹的子文件夹不匹配。
[^/]+/statistics/
如何扩展此表达式以匹配统计文件夹下的所有子文件夹?

最佳答案

使用以下正则表达式:

/^[^\/]+\/statistics\/?(?:[^\/]+\/?)*$/gm

Demo on regex101 .

解释:
/
^ # matches start of line
[^\/]+ # matches any character other than / one or more times
\/statistics # matches /statistics
\/? # optionally matches /
(?: # non-capturing group
[^\/]+ # matches any character other than / one or more times
\/? # optionally matches /
)* # zero or more times
$ # matches end of line
/
g # global flag - matches all
m # multi-line flag - ^ and $ matches start and end of lines

关于正则表达式匹配文件夹和所有子文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34691809/

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