>Date: Thu, 08 Jul 1999 12:48:49 +0200
>From: Matthias Pfisterer <[EMAIL PROTECTED]>
>
>Hi,
>
>In your java program, exchange the line
>       if (s1.charAt(0)!='#') { // not a comment or NULL line
>with
>       if (s1.equals("") || s1.charAt(0)!='#') { // not a comment or NULL line


or it could be a return character? Then, you would need

if (s1.equals("\n") || s1.charAt(0)!='#') { // not a comment or NULL line

-Larry Gates


----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to