I have an automation that gets the last comment to a separate text field ("LastComment".
I want to create a JQL filter that gives me all issues where "LastComment" has a question mark "?" in the text.
But it looks like the "?" is a reserved character for wildcard, even if I surround it with quotes I don't get the result I want.
My JQL in my filter: project = xx AND "Last Comment" ~ "'?'"
Any idea how I can solve this?
Thanks//Mikael
Hello Mikael,
You can get the result straight forward using JQL Search Extensions.
The JQL will look as following:
issue in wildcardMatch("LastComment", "*?*")
This JQL will match issues that contains "?" in the field "LastComment"
The full documentation can be found here.
Regards,
Ziad
Hi Mikael,
I understand that you are trying to use Jira's JQL to find all the issues that contain a question mark '?', however is not as easy as it seems. JQL does not have true string matching abilities. But rather it is being restricted to full word and partial word searches. This limitation is mentioned in Search syntax for text fields: Limitations.
That said, since we know you're using automation, there might be a way that you can use automation to flag these issues in a manner that JQL can report on them. For example, I created an automation rule like so:
In my example, I used the Advanced Compare condition that allows you to search using regex. In my example, I had it look at the issue description for the regex of \? (which is any question mark in that description). For my action I had it change the Priority field to be Highest, but you could easily create a new custom field of any type, but I'd suggest something like Checkbox. You could then use automation to set this flag that can then be queried by JQL for other uses, such as dashboard or board filters to show particular issues elsewhere within Jira.
You could also tweak this to look at comments, and set a custom field on the issue based on the appearance of a particular character in that comment in much the same manner. It looks like you found a similar work-around by changing the character into a complete word, but my approach has the benefit of not needing to alter the comment or description field to be able to see this in JQL.
I hope this helps.
Andy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
One ugly workaround that looks to be working, is that I have the automation
to "replace" the "?" character with a specific word, e.g "Question".
{{issue.comments.last.body.replace("?","? QUESTION")}}
Then all text with ...? will appear as ....? QUESTION
Based on that I then can make a filter with following query:
project = xx AND "Last Comment" ~ "QUESTION"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure ther is any field called last comment.
Try adding slashes in front of ?
comment ~ "\\?"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's a custom field.
Automation takes the last comment and set that custom field with same text.
I've already tried the backslashes, but get no results in my filter query.
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.