0
是否有螞蟻路徑樣式正則表達式的替代?螞蟻路徑風格正則表達式替換
對我來說似乎是java org.springframework.util.AntPathMatcher不能處理「|」在正則表達式中。
有沒有辦法來寫螞蟻路徑樣式正則表達式,檢查路徑是否符合給定的任何模式?
例如,我想檢查給定的路徑是否符合下列任何一種模式。
[ 「/富/我」, 「/酒吧/我」, 「/ foobar的/我」]
是否有螞蟻路徑樣式正則表達式的替代?螞蟻路徑風格正則表達式替換
對我來說似乎是java org.springframework.util.AntPathMatcher不能處理「|」在正則表達式中。
有沒有辦法來寫螞蟻路徑樣式正則表達式,檢查路徑是否符合給定的任何模式?
例如,我想檢查給定的路徑是否符合下列任何一種模式。
[ 「/富/我」, 「/酒吧/我」, 「/ foobar的/我」]
Ant的filename
選擇正常工作與在正則表達式模式|
。
<fileset id="testpath" dir="${parent.dir}">
<filename regex="/foo/me|/bar/me|/foobar/me" />
</fileset>
<echo>${toString:testpath}</echo>
https://ant.apache.org/manual/Types/selectors.html#filenameselect