split by Enter

Hi,
I am reading multiple-line text from a column. eggPlant puts all the lines as one item! I realized there is an enter captured after each line. Couldn’t find how to split by “enter”. Any help would be appreciated.

It looks like the entries are separated by return characters. So you should just be able to change the second line to this:

put ReadText(InPutArea) split by return into ReadInputList

That will give you a list of individual items.

Thanks @SenseTalkDoug!

Jahan