I want to use a JQL query to search for an issue whose summary starts with a string, so I'm using
summary ~ "string-i-want-to-search-for*"
However, the string I'm using has "-" in between the words, and that for some reason makes the contains function not work, because it returns no results.
Is this a know issue / expected behavior?
Is there any workaround for this case?
Hi - I hope that you are Doing good !!
Very interesting catch,
Thanks for sharing this one
JQL usually treats '-' as special character.
Kindly make use of double quotes around your search string as provided below and keep playing around
"\"string-i-want-to-search-for*\""
Hope this helps
Thank you very much and have a fantastic day!
Warm regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.