Any one run into issue where if you dont use the case sensitive search keyword, you will get no results?
Knime AP 4.3
Table:
Column Name: SomeColumnName
Row Value 1: Xyz DeF ABC001 ghi 4501d
Row Value 2: XyA BeF CDF002 4599a
Rule Based Row Filter Node: This expression returns results
$SomeColumnName$ LIKE “ABC001” => TRUE This expression does not return results (“node created an empty data table”)
$SomeColumnName$ LIKE “abc001” => TRUE
Row Filter Node returns results - with ‘case sensitive’ option NOT selected abc001
Is this observation with Rule Based Row Filter by design, or is this a bug?
don’t think it’s a bug. More like missing feature. Luckily there is easy workaround using Row Filter node as you figured it out. Also what is used are lowerCase()/upperCase() functions from String Manipulation node to circumvent it.