Hub
Pricing About
  • Software
  • Blog
  • Forum
  • Events
  • Documentation
  • About KNIME
  • KNIME Community Hub
  • Nodes
  • Rule-based Row Splitter (Dictionary)
NodeNode / Manipulator

Rule-based Row Splitter (Dictionary)

Manipulation Row Filter Streamable
Drag & drop
Like
Copy short link

This node takes a list of user-defined rules and tries to match them to each row in the input table in the defined order. If a rule matches and the outcome is TRUE , the row will be selected for inclusion in the first output table. If the first matching rule yields FALSE the row will be included in the second output table. If no rule matches this row will be put to the second output table (like when the last rule would be TRUE => FALSE ). The roles of first and second output table can be exchanged, see option below.

Each rule is represented by a row. To add comments, start a line in a (condition) cell with // (comments can not be placed in the same line as a rule). Anything after // will not be interpreted as a rule. Rules consist of a condition part (antecedent), which must evaluate to true or false , and an outcome (consequent, after the => symbol) which is either TRUE or FALSE .

If no rule matches, the outcome is treated as if it was FALSE .

Columns are given by their names surrounded by $, numbers are given in the usual decimal representation. Note that strings must not contain (double-)quotes (for those cases use the following syntax: /Oscar Wilde's wisdom: "Experience is simply the name we give our mistakes."/ ). The flow variables are represented by $${ TypeCharacterAndFlowVarName }$$ . The TypeCharacter should be 'D' for double (real) values, 'I' for integer values and 'S' for strings.

The logical expressions can be grouped with parentheses. The precedence rules for them are the following: NOT binds most, AND , XOR and finally OR the least. Comparison operators always take precedence over logical connectives. All operators (and their names) are case-sensitive.

The ROWID represents the row key string, the ROWINDEX is the index of the row (first row has 0 value), while ROWCOUNT stands for the number of rows in the table.

Some example rules (each should be in one row):

// This is a comment
$Col0$ > 0 => TRUE
When the values in Col0 are greater than 0, we select the row to the first outport (if no previous rule matched with FALSE outcome).
$Col0$ = "Active" AND $Col1$ <= 5 => TRUE
You can combine conditions.
$Col0$ LIKE "Market Street*" AND 
    ($Col1$ IN ("married", "divorced") 
        OR $Col2$ > 40) => FALSE
With parentheses you can combine multiple conditions.
$Col0$ MATCHES $${SFlowVar0}$$ OR $$ROWINDEX$$ < $${IFlowVar1}$$ =>
    FALSE
The flow variables, table constants can also appear in conditions.

You can use either Ctrl+Space to insert predefined parts, or select them from the upper controls.

The following comparisons result true (other values are neither less, nor greater or equal to missing and NaN values):

  • ? =,<=,>= ?
  • NaN =,<=,>= NaN

Node details

Input ports
  1. Type: Table
    Input table
    Any data table that should be split
  2. Type: Table
    Rules
    Table containing the rules
Output ports
  1. Type: Table
    First output
    First output table with rows that are evaluated to TRUE
  2. Type: Table
    Second output
    Second output table with rows that are evaluated to FALSE

Extension

The Rule-based Row Splitter (Dictionary) node is part of this extension:

  1. Go to item

Related workflows & nodes

  1. Go to item
    Rule Engine Interpretes escaped RegEx Line Break
    mwiegand > Public > Bugs > Rule Engine Interpretes escaped RegEx Line Break
    mwiegand
  2. Go to item
    Lookups
    wkhan > Public > Lookups
    wkhan
  1. Go to item
  2. Go to item
  3. Go to item
  4. Go to item
  5. Go to item
  6. Go to item

KNIME
Open for Innovation

KNIME AG
Talacker 50
8001 Zurich, Switzerland
  • Software
  • Getting started
  • Documentation
  • E-Learning course
  • Solutions
  • KNIME Hub
  • KNIME Forum
  • Blog
  • Events
  • Partner
  • Developers
  • KNIME Home
  • KNIME Open Source Story
  • Careers
  • Contact us
Download KNIME Analytics Platform Read more on KNIME Business Hub
© 2023 KNIME AG. All rights reserved.
  • Trademarks
  • Imprint
  • Privacy
  • Terms & Conditions
  • Credits