I am trying to use CEP 3.1.0 with a built in function for regexp matching
from cseEventStream[isMatch('foo\sbar',symbol)]
which should match "foo bar" and not "foobar". However, this fails with an error mesage
mismatched character '\' expecting '''
I have tried escaping with multiple '\'. Also, [isMatch('foo bar',symbol)] does not work. Although, from cseEventStream[symbol contains 'foo\sbar'] is a temporary workaround, the inability to use '\' is a severe limitation in regexp matching.