IonicWind Software

IWBasic => Console Corner => Topic started by: billhsln on November 21, 2008, 11:33:59 AM

Title: Correction to my Comma_Delimited_Parser Subroutine
Post by: billhsln on November 21, 2008, 11:33:59 AM
I found a problem with one line of code, which I would like to pass along, so that any one using the subroutine will get correct results:

'  if current char = " and previous char = "
if (cchar = q) and (pchar = q)
fldn = ""


The change is the 'fldn = ""' line.

Bill