Functions and CALL Routines |
Valid in: | DATA step, PROC SQL, and SCL |
Syntax | |
Arguments | |
Details | |
Example |
Syntax |
DQPARSEINPUTLEN ('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:
SHORT
LONG
AUTO
REMOVE
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:
SHORT
LONG
AUTO
NOTSET
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');
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.