Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

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 determine the projects affected by the given expression.
See also, Pattern Java Class.


SyntaxprojectMatches(regex)
Available sincev1.0.0-RELEASE
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':

project IN projectMatches("LATAM.*")

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

project IN projectMatches(".*Academy.*")

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

project IN projectMatches(".*EMEA")

Real World Use Cases:

· JRASERVER-43398 - Allow wildcard or '~' symbol to search for project/category name in JQL (by Ismael Olusula Jimoh)


JQL Function Reference

  • No labels