Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description:

Perform searches based on projects which their name match with the provided regular expression.

Note:
This function uses Java native String.matches() method internally to determite the groups affected by the given expression.
See also, Pattern Java Class.


SyntaxgroupMatches(regex)
Supported fieldsProject
Supported operatorsIN , NOT IN
Unsupported operators

= , != , ~ , !~ , > , >= , < , <=

IS , IS NOT , WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED

Examples:

• Find issues in projects that ther name starts with 'LATAM':

Code Block
languagesql
themeConfluence
"QA Team" IN projectMatches("LATAM.*")


• Find issues in project that their name contains 'Academy':

Code Block
languagesql
themeConfluence
"Dev Team" IN projectMatches(".*Academy.*")


• Find issues in projects that ther name ends with 'EMEA':

Code Block
languagesql
themeConfluence
"IT Team" IN projectMatches(".*EMEA")