Sytze:
Here's some non-elegant code, but it works on the sample you gave:
------------------
* NvLoad.prg
Fin = Fopen("Navman.txt")
Fout = Fcreate("NavClean.txt")
do while .T.
if Feof(Fin)
exit
endif
Tempstr = Fgets(Fin)
*-- Now strip off the beginning and ending quotes
Temp2 = Substr(Tempstr, 2, Len(TempStr)-2)
? Temp2
Fputs(Fout, Temp2)
enddo
Fclose(Fin)
Fclose(Fout)
-------------------
> My earlier post:
> Fairly simple solution is to preprocess, stripping off the quotes at
> front and back. It still would be worthwhile to check with Navman to
> see if this was a one-time aberration (in which case you don't want to
> do a lot of programming) or is this the way they'll come from now on.
>
> Dan Covill
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[email protected]
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.