Hi, I'm having some trouble trying to create a Jira filter that filters out all issues having a string custom field equal to '-'. I've already tried some escape sequences found on other similar topics:
MyField !~ \- (error)
MyField !~ \\- (doesn't filter out)
MyField !~ [-] (error)
MyField !~ '-' (error)
MyField !~ "-" (error)
Do you have any suggestions?
Hello @Loris Pozzobon
PLease see lot of details about this issue here
https://jira.atlassian.com/browse/JRASERVER-25092
did you try
Myfield ~ "\\-"
Thank you Tarun, I've just tried the filter you suggested and it is not filtering out, just like
MyField !~ \\-
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.