Most of our tickets is grouped inside square bracket like [BE], [FE], etc.
How can I search subtasks starting with those words? I've tried:
is this working?
summary ~ [BE]*
Thanks for your answer, but it doesn't work for me. I've tried entering it but got this error:
`Error in JQL Query: Expecting either a value, list or function but got '['. You must surround '[' in quotation marks to use it as a value. (line 1, character 11)`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@fahminlb33 ok, we have to ignore the first [, try
~ BE]*
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
or like this:
https://confluence.atlassian.com/jirasoftwareserver/search-syntax-for-text-fields-939938747.html
Advanced search: Find all issues that contain the phrase Jira Software.
text ~ "\"Jira Software\""
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Still no luck. The problem is the text I'm looking for is inside square bracket, from several links on Google, I've come to this topic
https://jira.atlassian.com/browse/JRASERVER-25092
It seems that up until now we can't search text that surrounded by special characters?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
maybe you can use some script addons (JMCF or automation for jira), to copy the summary into another text field and then shorten it from
[BE] abc
to
BE
You could then use the JQL search
I did something similar with JMCF https://marketplace.atlassian.com/apps/27136/jira-misc-custom-fields-jmcf?hosting=server&tab=overview
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.
For me, it worked like this :
summary ~ "\\[RRR\\]"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This one worked for me. All other variations above did not. This is in the "Board Settings" area where I was trying to get some JQL based quick filters created. Example: summary ~ "\\[DRAFT\\]" (But according to the search info above and the results I am seeing, this is really just the same as summary ~ DRAFT because the special characters are not indexed... Sigh.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
so it looks like it is summary ~ RRR,
so... it does not work as expected...
It's a pitty
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're right Andrzej, it does not work as expected. There is no solution... :-(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ran into exactly the same issue. We're using `[FE]` and `[BE]` prefixes. This filter works:
summary ~ FE
but this doesn't:
summary ~ BE
This is because "be" is a reserved word. You'll have to change "BE" to something else. Special characters can't be filtered on either.
See more here: https://confluence.atlassian.com/jiracoreserver073/search-syntax-for-text-fields-861257223.html#SpecialCharacters
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
when will these Bug fixed?
Would be nice if any escape sequence would work...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this works for us, to find [FE]:
summary ~ "\"[FE]\""
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i think, \"[FE]\" returns all results with FE and not only [FE]
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.