Hi,
All my summary fields for issue type testcases start with [TC-01-UN-1234] , [TC-02-UN-1234] , [TC-01-UN-4567, etc...
I want to search all testcases which are part of perticular UN. I am trying following JQL but it doent return the expected result:
summary ~ "UN-1234" return nothing but If try:
summary ~ "UN-" i get everything.
Can someone help me with this issue.
Thanks
Mangesh
It's not straightforward, if you have script runner you can use:
issueFunction in issueFieldMatch("project = JRA" , "summary", "UN-\\d*")
Hmm, "-" is special character you might want to escape. Maybe it works
summary ~ "UN\-1234"
please see here: https://confluence.atlassian.com/display/JIRA/Performing+Text+Searches#PerformingTextSearches-Escapingspecialcharacters:\or\\
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.
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.