如何使用 talend 集成检索空白记录

How to retrieve blank records using talend integration


我想从 excel 文件中检索空白记录。
记录为:

+----+------+
| id | name |
+----+------+
| 1  | a    |
+----+------+
| 2  | b    |
+----+------+
| 3  |      |
+----+------+
| 4  | d    |
+----+------+
|    | e    |
+----+------+
|  6 | f    |
+----+------+

这里我要检索第3条和第5条记录。 谁能给我个主意。

我试过这个

使用 t 筛选行 试图找到空白记录。

我猜你的空白记录不包含 space " " 。尝试使用 tFilterRow 和这个条件:

input_row.id == null || input_row.name == null 

如果列可以为空。否则:

input_row.id.equals("") || input_row.name.equals("")