|
|
|
Software Design - Definitions
| Parse |
To separate a single string into one or more substrings. For example, the string "John Q. Doe" could be parsed into three substrings: "John" "Q." "Doe". |
| Token |
One or more characters that are treated as a single entity. For example, a variable name is a single token, regardless of the number of characters in the name. |
|