Dear all,
by the help of the Rule Based Filter node I'm trying to get only rows where a specific string starts with exact three capital letters plus a dash ("-") followed by an arbitrary number of other characters (should be easy)
However, the following expression does not return any row although there are hundreds of possible candidates, e.g. BMW-4, REN-Clio, ...
$ItemsString$ MATCHES "^[A-Z]{3}\-" => TRUE
(with "Include TRUE Matches" Option set).
I tried this also on a regex page (http://www.regexe.de/) and got the right results
Any ideas ? Thx in advance ...