Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: CarCrazyAlHello all -
I am quite new to LAE and am attempting to work through some tutorials / samples. I am somewhat stuck on how to replace special characters (TAB) with something else. I have a single CSV Input File with 7 fields. All these fields are STRING in the CSV's Out Pin. One of the fields, named "SUITE" contains either values or a pair of tabs (\t\t). I want to replace these with some text, like "Unknown".
Using a Filter Node, I have tried
if(suite.strlen() < 1 then {"Unknown"} else suite) which broke. I want to write something like {if SUITE = \t\t then "unknown"}.
Can anyone help guide me to a solution?
Thank you!