I need to setup filter that will search 2 strings in Summary field. My problem is that this strings can be parts of another string
Example: SomeSTRINGi need and antoherTHINGineed to find.
I need to list all issues in project that contains STRING and THING.
Background is that there is email handler i sometimes people just don't use space so doing something like:
project = "AAA" AND summary ~ STRING and summary ~ THING
Does not simply help.
Thanks
Domagoj
Dear @Domagoj Zecevic,
have you tried:
project = "TST" AND (summary ~ "field" AND summary ~ "check")
worked for me.
EDIT: what you would required is "*field*" but this is not implemented in JQL, yet. First letters are not allowed to be '?' or '*'.
So long
Thomas
I have tried it, and it does not work. My problem is that i need just middle of the string...
Thanks
Domagoj
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As I wrote - JQL lacks the ability of wildcard search.
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.