I was wondering if anyone knew how to use €œnot equals€ with €œwildcards€ in the application modeler. I€™m working with multiple filter on a database search, so I have to use €œMatch Index€ and can€™t use €œPath€. The problem is that there are two identical dropdown boxes on each filter which is throwing off the €œMatch Index€. I€™m trying to use "Value" to differentiate between the two since the left always has the same values. The basic idea being:
LeftBox: Value (*Wildcard) = *€œLastChoiceInLeftDropDown€
and
RightBox: Value (*Wildcard) (Not Equal) *€œLastChoiceInLeftDropDown€.
Found a regular expression that I think is the same as
*“LastChoiceInLeftDropDown”.
^((.*((?!""String"").).{""LengthOfStringMinus1""})|(.{1,""LengthOfStringMinus1""}))$
So if you wanted
*test
it would be
^((.*((?!test).).{3})|(.{1,3}))$