Previous Page | Next Page

SAS Programs and Macro Processing

How SAS Processes Statements without Macro Activity

The process that SAS uses to extract words and symbols from the input stack is called tokenization. Tokenization is performed by a component of SAS called the word scanner, as shown in The Sample Program before Tokenization. The word scanner starts at the first character in the input stack and examines each character in turn. In doing so, the word scanner assembles the characters into tokens. There are four general types of tokens:

Literal

a string of characters enclosed in quotation marks.

Number

digits, date values, time values, and hexadecimal numbers.

Name

a string of characters beginning with an underscore or letter.

Special

any character or group of characters that have special meaning to SAS. Examples of special characters include:

* / + - ** ; $ ( ) . & % =

The Sample Program before Tokenization

[The Sample Program before Tokenization]

The first SAS statement in the input stack in the preceding figure contains eight tokens (four names and four special characters).

data sales(drop=lastyr);

When the word scanner finds a blank or the beginning of a new token, it removes a token from the input stack and transfers it to the bottom of the queue.

In this example, when the word scanner pulls the first token from the input stack, it recognizes the token as the beginning of a DATA step. The word scanner triggers the DATA step compiler, which begins to request more tokens. The compiler pulls tokens from the top of the queue, as shown in the following figure.

The Word Scanner Obtains Tokens

[The Word Scanner Obtains Tokens]

The compiler continues to pull tokens until it recognizes the end of the DATA step (in this case, the RUN statement), which is called a DATA step boundary, as shown in the following figure. When the DATA step compiler recognizes the end of a step, the step is executed, and the DATA step is complete.

The Word Scanner Sends Tokens to the Compiler

[The Word Scanner Sends Tokens to the Compiler]

In most SAS programs with no macro processor activity, all information that the compiler receives comes from the submitted program.

Previous Page | Next Page | Top of Page