View Single Post
  #14 (permalink)  
Old December 6th, 2015
h4x5h17 h4x5h17 is offline
Valued Member
 
Join Date: November 20th, 2015
Posts: 50
h4x5h17 is a great assister to others; your light through the dark tunnel
Default

The lists have the MS newline character (^M) after every entry , but are missing the unix newline character (\n) after some entries.

Maybe java doesn't care and the (^M) newline character is enough. Then the only problem would be non-java and non-MS systems/apps (Gtk-G on Unix) unless they have it coded to accept the MS newline on Unix builds.

It is a real easy fix. If you need any help with that let me know.

Just replace all "^M" with "\n" then all "\n\n" with "\n" then all "\n" with "\n^M" or "^M\n" (or something like that). I'm not sure it there is a standard for which one is to preceed the other.
Reply With Quote