Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to search for tickets having question mark in the description?

Rahul Naik January 19, 2018

I am trying to write a script that involves fetching the ticket ID by passing the description to the Jira API. It works well in all cases except for when the description has a question mark in it within single quotes.

Ex: in my ruby script, the jql used is:

"jql" => "project = ABC AND labels in ('abcd') AND description ~ \"#{message}\""

and here message is a variable holding the description content which has  'abc?'. (including single quotes)

Can anyone help me how to handle this case?

1 answer

0 votes
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 19, 2018

I don't think you can do this.  The question mark is a wildcard in most places, and Jira sees it the same way.  The REST interface and the GUI don't see it in other ways even if you escape it.

Suggest an answer

Log in or Sign up to answer