Previous Page | Next Page

Functions and CALL Routines

DQPARSEINPUTLEN Function



Sets the default length of parsed input, and returns a string indicating its previous value.
Valid in: DATA step, PROC SQL, and SCL

Syntax
Arguments
Details
Example

Syntax

DQPARSEINPUTLEN ('input-length')

Arguments

input-length

specifies the input length for parsing functions. DQPARSEINPUTLEN returns the previous value of the input length.


Details

The DQPARSEINPUTLEN function specifies the input length anticipated by parsing functions. If REMOVE is specified, the override value is removed and the input limit is set to the default value. Valid values for the input length are as follows:

The DQPARSEINPUTLEN function returns a value indicating the previous value of the input length. If the value NOTSET is returned, the override value is not set. Possible values for the previous input length are as follows:


Example

The following example sets the default input length to SHORT. The previous value of the parse input length is returned as the value of oldDEFAULT .

oldDefault= dqParseInfPutLen('short');

Previous Page | Next Page | Top of Page