I'm trying to screen scrape from blockbuster.com, where it shows chapter times from dvds. Each line of chapters ends in a \r except the last one, which ends in \n (wtf, btw, and how would you even create such a file, with different newline chars used?), and I'd like to store this "ending" value in a plist, so if blockbuster changes it (fixes it?), the program can adapt without recompiling.
So how to put this character in a plist file? well I tried saving the downloaded string as a file, opening in BBEdit, copying the newline, pasting into the plist and saving. But when I pulled up my NSDictionary, the value I got was \n, not \r. I also tried putting <string>\r</string> as a value in the plist, but that gave me \\r.
so, is there any way to store a \r in a plist? or do I have to "post-process" the data I get from my plist (which works, but is quite lame)?