17 Oct
2016
17 Oct
'16
7:52 a.m.
On Oct 17 11:57, MKS wrote:
I'm using the regex "/Adjacency.*Up/" and "/Adjacency.*Down/"
The "/Adjacency.*Up/" alert is working fine, but the combo Adjacency and Down doesn't alert.
If I match only on Adjacency or only on Down I do get an alert, both these two together don't work as expected. Any workarounds or a different regex I should use?
Try using /Adjacency.*(Up|Down)/g instead.
Paul