Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Serial Communications - SUCCESS!!!

From: dlhawley::attbi::com at: 26-Feb-2002 21:41

I'd start by putting something like: while [0 <> length? (line: .... ] [ switch (first parts: parse line ",") [ "$GPGLL" [ handle-gpgll parts] "$PGRMZ" [ ... ] ..... ] ] you can ignore the strings you don't want and you have blocks of data split up in usable parts. Dave