I would like to find all records where the summary starts with "$$: ". Example: "$$: Do this work at full rate."
I have tried 'summary ~ "$$:"', but get no returns.
you need to escape special characters
see text search docs here
https://confluence.atlassian.com/jiracoreserver073/search-syntax-for-text-fields-861257223.htmL
@Scott Simpson If you have the script runner plugin installed you could do something like this Syntax issueFieldMatch(Subquery, Fieldname, reg ex)
To find all tickets starting with "$$:"characters in summary use this JQL query
issueFunction in issueFieldMatch("project = A", "summary", "$$:*")
Best regards,
Moses
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.