Basic Parsing Concepts
From Computer Tyme Support Wiki
(Difference between revisions)
m |
m |
||
Line 1: | Line 1: | ||
+ | * [[GULP]] - Main GULP Index | ||
+ | |||
= Routines - Data Structures - Concepts = | = Routines - Data Structures - Concepts = | ||
- | First - the tools. These are the pieces that need to be created in order to make this work. | + | First - the tools. These are the pieces that need to be created in order to make this work. I will outline the concepts here. These shouldn't be hard to write. Once I define some concepts and routines we'll put it together and give you the big picture. |
+ | |||
+ | * NextWord - NextWord is the main text parsing routine. It take the next logical word from the imput stream for processing. If the input stream is X=Y+(Z*5)/10 the NextWord tokens will break down as: | ||
+ | |||
+ | X = Y + ( Z * 5 ) / 10 |
Revision as of 06:24, 2 October 2005
- GULP - Main GULP Index
Routines - Data Structures - Concepts
First - the tools. These are the pieces that need to be created in order to make this work. I will outline the concepts here. These shouldn't be hard to write. Once I define some concepts and routines we'll put it together and give you the big picture.
- NextWord - NextWord is the main text parsing routine. It take the next logical word from the imput stream for processing. If the input stream is X=Y+(Z*5)/10 the NextWord tokens will break down as:
X = Y + ( Z * 5 ) / 10