我正在使用 JQL 在 JIRA 中开发一个过滤器,它可以让我从我的团队正在处理的所有项目中提取。
我们希望能够做的是能够使用VersionMatches("")
. 使用VersionMatches,我们希望能够仅搜索每个月的月份和年份。我们目前拥有的是这样设置的
2.9.4(2013 年 5 月 21 日)
是否可以仅搜索月份和年份并跳过日期部分?
我正在使用 JQL 在 JIRA 中开发一个过滤器,它可以让我从我的团队正在处理的所有项目中提取。
我们希望能够做的是能够使用VersionMatches("")
. 使用VersionMatches,我们希望能够仅搜索每个月的月份和年份。我们目前拥有的是这样设置的
2.9.4(2013 年 5 月 21 日)
是否可以仅搜索月份和年份并跳过日期部分?
So I was able to find the answer to this problem by looking through Java Regex documentation
To get it to skip over the Day section you need to create a filter that is similar to this
versionMatches(".*6/\d{2}/2013\)")
the \d{2} will skip over the day section and only search for the Month and Year