Forums

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

How to search for a word at the beginning of an issue summary

Markus Dietrich
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 23, 2022

I need to create a search which will return all issues where the summary is starting with a key word. It should not return issues where the key word is in the middle of the summary. Any idea how to do this in JQL?

Regards,
Markus

2 answers

1 accepted

1 vote
Answer accepted
Tuncay Senturk _Snapbytes_
Community Champion
March 23, 2022

Hi @Markus Dietrich 

Welcome to the community!

As far as I know, you can't do that without an app.

Here, Atlassian recommends using Script Runner's issueFieldMatch JQL function with regular expression.

You can use something like

issueFunction in issueFieldMatch("", "summary", "^startingword*")

Hope it helps 

Tuncay Senturk _Snapbytes_
Community Champion
April 1, 2022

Hi @Markus Dietrich 

Could you please accept the answer if it was helpful?

Thanks

0 votes
Markus Dietrich
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 1, 2022

Hi @Tuncay Senturk _Snapbytes_ ,

thanks, it is working fine for me.

Regards,

Markus

Tuncay Senturk _Snapbytes_
Community Champion
April 1, 2022

Perfect, I'm glad it worked!

Suggest an answer

Log in or Sign up to answer