Example of a summary string:
"RPD Build Request for "release/comcast_rs57_cd" Branch - CER_NODE_V01.01.00.0237.01"
Example of a description string
"Previous Build: CER_NODE_V01.01.00.0237"
This is my search, that does not return anything:
project = RPD AND summary ~ "V01.01.00.0237"
Hi @John DiNatale -- Welcome to the Atlassian Community!
For JQL wildcard searches, use an asterisk to find matching text in whole "words"...and...that wildcard cannot occur at the start of the search string.
For your example, this could not work:
project = RPD AND summary ~ "*V01.01.00.0237"
But if you knew the prefix was consistent you can start with that. For example:
project = RPD AND summary ~ "CER*V01.01.00.0237.01"
And if you knew there were multiple possible prefixes, try searching for each one like this:
project = RPD AND ( summary ~ "CER*V01.01.00.0237.01" OR summary ~ "ABC*V01.01.00.0237.01" )
Kind regards,
Bill
Hi Mark, thanks for your response.
I'm using this version:
I can't get the wild card to work at all?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for you response.
What I’m finding, is the only search that finds it, is the exact string
project = RPD AND summary ~ "CER_NODE_V01.01.00.0237.01"
Wild card capture does not find anything:
project = RPD AND summary ~ "CER_NODE_V01.01.00.0*"
project = RPD AND summary ~ "CER*_V01.01.00.0237.01"
Try modifying your search criteria or creating a new issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I simulated your summary and the answer provided by @Bill Sheboy worked for me
Summary ~ "CER*V01.01.00.0237"
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.