Custom field and JQL case sensitive searches

yonimoses January 10, 2020

Hi

 

Can I search JQL with case insensitive?

I can search for the exact match only and it's case sensitive , I'd like to be able to search for "Hello" and "hello" also..

 

Is that possible?

Thanks!

 

2 answers

2 votes
Adrian Stephen
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
January 10, 2020

Hi @yonimoses 

All query terms in JIRA are not case sensitive as mentioned here. 

There is a workaround discussed here which might help you

0 votes
Haran Kumar
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 20, 2020

Hi @yonimoses , 

Out of box, with normal JQL you cannot do it . But there is way you can achieve it by using the OR function . But you have to try and and work on the probabilities, over the combinations of words. 

Say for example you need to search for the ticket where you have a word "document" in the description , So you JQL will go like this , 


project = "XXX" AND (description ~ Document OR description ~ document)

Replace "XXX" with your concern project name 

This will help you find the ticket whose description has the word Document or document in project XXX. 


Likewise you can keep adding the OR statement. 


Hope this helped you. 

Regards
Haran

Suggest an answer

Log in or Sign up to answer