Status
Tech review



This JQL function is used for searching project properties containing a text value.



projectsWhereTextProperty(propertyName, operator, text | regularExpression ) #Output: Issues



Parser expressionDescription


project in projectsWhereTextProperty(country, "=", Spain )


This example returns a list of projects where the property 'country' is equal to 'Spain', i.e. text {country=Spain} is present in the project's description.


project in projectsWhereTextProperty(country, matches, "France|Germany")


This example returns a list of projects where property 'country' matches the regular expression France|Germany, i.e. text {country=France} or {country=Germany} are present in the project description.


project in projectsWhereTextProperty(country, "~", spain)


This example returns a list of projects where property 'country' is equal to 'spain', 'SPAIN', ' SpAiN ', etc.



Parameters used in this function

ParameterInput (data type)Description
propertyName

The name of a project property containing a text value.
operator

A valid comparison operator.

text | regularExpression

A text literal used for comparison, or a regular expression in the case of matches operator.



This function returns a




Short description

JQL function to search for specific text properties.

Output

Label