When you use 'parse' without the optional break string parameter, then the text is parsed as if newLISP source is read. newLISP source has string length limitations of the "..." quoted strings of 2048 characters. For longer strings the [text], [/text] tags must be used. Another limitation are symbol tokens in newLISP source which cannot be longer than 255 characters.
Use a string break pattern (either simple of regular expression), and the problem will go away.
Thank you, Lutz, for pointing out how to use a sting break. Didnt know what that meant before.
Might I also ask what would be the function to use to just pick out a section of the file (using a regular expression) instead of having parse make the entire file a string before I get to the elements Im after.
I first thought to use find or regex, but it seems most of the functions are prepared for nL strings already created.