Hi ,
I wants to search the String "[XXX]" in sub tasks BUT I wants in result list only sub tasks which contain [XXX] and don`t wants to recieve sub tasks which contain only XXX
This is the query I wrote , but I also sub tasks which contain only XXX without [] :
issueFunction in subtasksOf("issuetype = Story") AND summary ~"\\[XXX\\] "
Any idea what I need to fix ?
You have to use script runner plugin for searching for partial text (regex) as JIRA doesn't support it out of box thus "summary ~"\\[XXX\\] "" won't work in JQL as partial text search isn't supported by JIRA, rather use script runner plugin as provided in the links below.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To find all issues where the description contains a ABC0000 where 0000 is any number, you could use:
issueFunction in issueFieldMatch("project = JRA", "description", "ABC\\d{4}")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.