I have a stream of featues (fme_line), with the attribute:
Attribute(encoded: utf-8) : `type' has value `Ferry Route'
or
Attribute(encoded: utf-8) : `type' has value `Major Highway'
I am trying to use the TestFilter to find the ferrys.
I have the following StringFinder call, but it always returns -1:
@FindString(@Value(type) , "ferry", 0, FALSE)
also I have tried something simpler
@Value(type) = "Ferry Route"
But that also is always failing.
And this also does not work:
@Value(type) CONTAINS "Ferry"
any ideas?