I am trying to find issues by suffix (substring at the end of the string)
For example there are 5 issues with following data:
To do this I was trying to use the following JQL:
project = DXDEV and "Component Version[Short text]" ~ "*rc.5"
Due to this JIRA guide on how research works, I expected to get issues n4 and n5 as a result.
However I got an error:
The text query '*rc5' for field 'Component Version[Short text]' is not valid: the '*' and '?' are not allowed as first character in wildcard query.
My questions:
Thanks in advance
Standard JQL doesn't easily allow searching for exact words, special phrases and patterns. The error you see explains the limitations of native wildcard search.
To get the wildcard support, use our professional indexing service JQL Search Extensions
After you install the app, you can simply search:
project = DXDEV and issue in wildcardMatch("Component Version[Short text]", "*rc.5")
Check out the documentation for more examples.
I hope this helps!
Daniel
Thank you for your answer!
Looks like that it should help.
But! Got another problem during trying this.
We installed this plugin, but when I try
project = DXDEV and issue in wildcardMatch("Component Version[Short text]", "*rc.5")
I receive an error:
Unable to find JQL function 'wildcardMatch(Component Version[Short text], *rc.5)
Any ideas how to fix that?
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.
Some functions are only available in our screen. Go to Apps->JQL Search Extensions->Extended Search and run your query there.
Have a look at documentation here.
It's best if you use the support channel to get a quick response from us: https://jqlsearchextensions.atlassian.net/servicedesk/customer/portal/2
Thanks!
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.