I'm trying to parse a file list such as:
apple
pear
banana
I know this would be easy to do with a comma, but this is how all the files I'm using are constructed (and there's over 50 files).
I tried using the hex codes for CR & LF (0D 0A 2 times) but I got an error: tokenat(file,n,0D0A0D0A)
tokenat(src, index, separator)
Return the Nth token from src, splitting the string by separator. For example, tokenat("apples|oranges|bananas", 1, "|") returns oranges.