I am trying to find all issues that have this text in the summary: "[BA]" (without the quotes)
This is the query that I am using:
summary ~ "\"\\[BA\\]\""
But it also returns text that DOES NOT have the brackets.
How can I do this properly?
Try this JQL:
issueFunction in issueFieldMatch("project=ABC", "summary", "\\[BA\\]") order by created
I found a document that states special characters are not stored.
See this Link
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was just looking for the same. Are you also on an older version of Jira? I did find this:
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.