パターン マッチング リファレンス

Bamboo supports a powerful type of regular expression for matching files and directories (as with pattern matching in Apache Ant).

These expressions use the following wildcards:

1 つ以上の文字 (パス区切り記号以外の文字) と一致
*0 個以上の文字と一致 (パス区切り記号を含まない)
**Matches zero or more path segments.


Remember that Ant globs match paths, not just simple filenames.

  • If the pattern does not start with a path separator i.e. / or \, then the pattern is considered to start with /**/.
  • If the pattern ends with / then ** is automatically appended.
  • パターンにはワイルド カードをいくつでも含めることができます。

Ant ドキュメントも参照してください。

*.txt Matches /foo.txt and /bar.txt but not /foo.txt or /bar.txt
/*.txtMatches /foo.txt but not /bar/foo.txt


dir1/file.txtMatches /dir1/file.txt/dir3/dir1/file.txt and /dir3/dir2/dir1/file.txt
**/dir1/file.txtMatches /dir1/file.txt/dir3/dir1/file.txt and /dir3/dir2/dir1/file.txt
 /**/dir1/file.txtMatches /dir1/file.txt/dir3/dir1/file.txt and /dir3/dir2/dir1/file.txt
/dir3/**/dir1/file.txtMatches /dir3/dir1/file.txt and /dir3/dir2/dir1/file.txt but not /dir3/file.txt,/dir1/file.txt
/dir1/**Matches all files under /dir1/



最終更新日 2021 年 7 月 18 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.