Hello,
I was searching some issues in JIRA by applying a filter and I provided three words in the Query field lets say that ( JIRA is good).
When I hit search, I am getting result based on all the words like the Summary conatining only JIRA is also coming in search result and Summary containing only good is also coming in search result, but what I want is the search result which contains only those with Summary containing all of the above three words in combination.
According to me, Summary should contain only search result with above three words at any place any order
What query should I apply to achieve this result.
Thanks
Mohit
Please Atlassian give us a method for >>exact<< searches. Thank you.
Grigory's response gave me another thought on how to make it work. Please try
summary ~ "\"Jira is good\""
The escaped inner quotes contains the search term while the outer quotes deals with the navigator syntax.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
lots of up-votes for this answer, but i still just get tickets with "Jira" and also "good" but not "Jira is good".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure why it did not work for you, but it seems to have worked for me.
I hope you found a solution.
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.
Thanks to everyone who is investing time in this. The above suggestion doesn't work for me, but even if it did, why is it expected that the user would need to research the proper syntax for escaping the quotes and using a tilde to perform a simple text search? Advanced syntax should be for instances where you need to search for things like a special character inside of a comment. 99.9% of the time people just need to search plain language phrases so they can locate the ticket or comment that contains the details they're looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
LOL.
I am just leaving "LOL" comments now. After the UI downgrade we got that looks better but is functionally worse, I have zero hope that Atlassian reads these messages much less makes it easy for a user to search for a specific phrase like "JIRA NEEDS A NEW CEO".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can't believe that it's possible for Atlassian to have raised $462 million in their IPO 4 years ago and yet Jira still doesn't have a working (nevermind simple/common sense) exact phrase search. Am I just missing something...? Was there $10k in the budget to get this working? I'm sure more than $10k worth of clients would appreciate it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is a known issue with Jira Cloud. They are gathering interest. Please, vote and comment if you are interested in this fix/implementation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The funny part is that it does not even take a multiple word scenario to cause it..
Searching for "summary ~ "FT#3"
matches a description "FT#4 for server number 3"
Even if you use all of the clever quote escaping above it still matches. So I cannot even query for a simple one word phrase
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So Atlassian is providing a solution which does not work. Isn't it a bug actually?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try this, I think I have gotten this to work sort of.
summary ~ \"jira\ is\ ok\ I\ guess\"
Escaping the quotes, and escaping spaces.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So for the comments that includes "You can close" should be:
comment~ \"You\ can\ close\"
This one giving me the same result with comment~ "You can close". :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Reading this thread is unbelievable. I honestly think whoever from Atlassian is replying still doesn't understand this issue being described.
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.
Would just like to upvote this working answer. (v7.3.2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just retested Cloud on the off chance that something has changed. This solution is still equivalent to
which returns all issues with both the word Jira in them and the word good in them, rather than only issues with the exact text "Jira is good" in them.
This isn't what the OP (& the rest of us) is asking for at all.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Shame that it doesn't work on cloud.
Can confirm it works on server though! Didn't realise OP was specifically asking about the Cloud version & odd that it doesn't function in the same way.
(This is assuming you've included the important ~0 bit)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Roger that, I included the ~0 bit.
I'm guessing that some admins have disabled word stemming leading to different end user experiences (see the bottom of https://confluence.atlassian.com/jiracorecloud/search-syntax-for-text-fields-765593720.html for Cloud or https://confluence.atlassian.com/jiracoreserver/search-syntax-for-text-fields-939937723.html for Server)
I just tested this on my Cloud instance by setting indexing to other. It's better but it's still not an exact match. For example:
still matches the phrase
even though it's not an exact match.
I'm guessing that server will have the same "extra" matches as well. Perhaps someone can test this?
The bad part about this partial solution is that it affects all users and all searches, rather than letting the individuals searches declare if they need stemmed matching or exact matching.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this suggestion was so exciting that despite folks saying it doesn't work on cloud i had to try it myself. .. and confirming that w/ my cloud jira, these yield identical results:
text ~ "\"jira is good\"~0"
text ~ "jira is good"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
diving in a little further.
it seems that "proximity searches" are not working as documented,
at least in jira cloud.
specifically, i created a test ticket who's description is:
test jira search.
jira versus exact phrasing.
yep.
and then do an advanced search with:
text ~ "\"jira phrasing\"~0"
which yields the test ticket, when it shouldn't.
same results with ~1, which also shouldn't match "jira versus exact phrasing".
text ~ "\"jira phrasing\"~1"
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.
See if this works for you.
summary ~ JIRA AND summary ~ is AND summary ~ good
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You probably need double quotes around the word is since is an operator as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh, the default search indices has an ignore word list, so the word "is" may not match.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That would still produce a match for the phrases:
"Good is Jira"
"Nothing is good about Jira"
"Jira needs To fix this for good because it is annoying"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I stumbled on a similar problem today and found something that works for me.
A basic search on:
"\"Exact Text To Match\""
with the surrounding quotes included will produce results with only the tickets that contain the text 'Exact Text To Match'.
This can then be translated to the following, rather chaotic, advanced search condition:
text ~ "\"\\\"Exact Text To Match\\\"\""
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We are running JIRA server v7.2.2. I don't use cloud, so I am not sure if this difference is between the server and cloud implementations of if something changed in a newer release, as our version is over 4 years old at this point...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I, too, find it very frustrating that there is not a better way to do an exact search on text fields in JQL. I have a use-case for this where I need to make sure my JQL query returns only 1 issue as I know there is only one where the summary exactly matches my search term, with no extra terms outside of that. I tried things that others suggested here, like:
summary ~ "\"Sample text\" NOT \"Sample\ text\ *\""
and
summary ~ "+\"Sample\ text\" -\"\ *\"~0"
but nothing works. It either returns nothing, or it returns my desired issue and other issues with summaries like "Sample text abc".
After banging my head against the virtual wall for a while this morning I remembered that Scriptrunner has an issueFieldExactMatch() function built-in. I just tried it out and it worked beautifully, no special syntax or escaped characters required. You can use
issueFunction in issueFieldExactMatch('<some JQL subquery>', 'summary', 'Sample text')
Specific documentation on usage here. I agree that Atlassian should provide a better way to do exact search on text fields and that it is ridiculous that they have not yet done so. However, Scriptrunner is quickly becoming my favorite add-on and it is one of the more affordable plugins out there, arguably one of the best value for the money for how powerful I've found it to be.
If your workflow depends on an exact text field match, I suggest looking into that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sounds promising, but I personally get
"Field 'issueFunction' does not exist or you do not have permission to view it."
error message in cloud Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have Scriptrunner for Jira Cloud, it looks like this is still possible but you may have to enable "enhanced searching" to use issueFunction: https://scriptrunner-docs.connect.adaptavist.com/jiracloud/enhanced-search.html#_issuefieldexactmatch
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can I force a search to be case-sensitive? That would get me a bit closer to my target
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
summary ~ "JIRA is good"
As Norman said, you have to use double quotes to search exact phrase.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does that actually work for you? I have tried it out since version 4.4 (when I started to use JIRA)and it generates results more like field contains word1 or field contains word2 or field contains word3 which is the behavior that Mohit was complaining about.
The reason for questiong, is because maybe there is an option that people can turn on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My bad - I was wrong. According docs you have to use fuzzy search to get exact match like this:
summary ~ "\"JIRA is good\""
Double quotes inside query have to be escaped.
Sorry for incorrect answer at first.
Hope, this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This doesn't work. Try a two-word phrase with a freshly created issue. I'm getting hundreds of results when I should only be getting 1.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Normally I don't post "ME TOO!" but this question has been open since 2012 and the answers only echo the Jira documentation description ~ "\"match this exact phrase\""
This does not work for me and obviously not for some other users.
Does something have to be explicitly configured to make this work?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can only confirm that (at least, without any special configurations) now in cloud Jira the description ~ "\"match this exact phrase\"" approach doesn't lead to the desired result.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Come on Atlassian- get off your asses and at least reply to this
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.