Filtering columns from a row that contain the wrong number of characters

I have a row of strings, each string should be exactly 8 characters. Any other entry is an entry error that I would like to filter out. What is the best way to accomplish this?

Welcome to the forum @sroberts.
For this task, you can first count the number of characters in the strings using the length formula in a String Manipulation node, then use a Row Filter node to keep only those rows where the count is 8.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.