IRAF help page for package lists, program tokens

from NOAO tokens -- break input into stream of tokensUSAGEPARAMETERSDESCRIPTIONEXAMPLESSEE ALSO

tokens -- break input into stream of tokens


USAGE

tokens files


PARAMETERS

files

The list of files to be converted into a stream of tokens.

ignore_comments = yes

Ignore comments in the input string?

begin_comment = #

The string marking the start of a comment

end_comment = eol

The string marking the end of a comment. The value end_comment = "eol" means the end of a line terminates a comment.

newlines = yes

Is newline a legal token?


DESCRIPTION

Task tokens breaks the input up into a series of tokens. The makeup of the various tokens is defined by the FMTIO primitive ctotok, which is not very sophisticated, and does not claim to recognize the tokens for any particular language (though it does reasonably well for most modern languages). Comments can be deleted if desired, and newlines may be passed on to the output as tokens.

Comments are delimited by user specified strings. Only strings which are also recognized by ctotok() as legal tokens may be used as comment delimiters. If newline marks the end of a comment, the end_comment string should be given as "eol". Examples of acceptable comment conventions are ("#", eol), ("/*", "*/"), ("{", "}"), and ("!", eol). Fortran style comments ("^{c}",eol) can be stripped by filtering with match beforehand.

Each token is passed to the output on a separate line. Multiple newline tokens are compressed to a single token (a blank line). If newline is not desired as an output token, it is considered whitespace and serves only to delimit tokens.


EXAMPLES

Break up the source file for this task into tokens:

cl> tokens tokens.x


SEE ALSO

words,


This page automatically generated from the iraf .hlp file. If you would like your local iraf package .hlp files converted into HTML please contact Dave Mills at NOAO.

dmills@noao.edu