| Functions and CALL Routines |
| Valid in: | DATA step, PROC SQL, or SCL |
| Syntax | |
| Details | |
| Examples | |
| See Also |
Syntax |
| DQLOCALEINFOLIST(`definition-type' <, `locale'>) |
specifies the definitions that are displayed. Valid values are as follows:
ALL
CASE
GENDER
GUESS
IDENTIFICATION
MATCH
PARSE
PATTERN
STANDARDIZATION
(optional) specifies the name of the locale. The value can be a name in quotation marks, the name of a variable whose value is a locale name, or an expression that evaluates to a variable name or to a quoted locale name.
The specified locale must be loaded into memory as part of the locale list. If no value is specified, the default locale is used. The default locale is the first locale in the locale list. For information on the locale list, see Load and Unload Locales.
| Details |
The DQLOCALEINFOLIST function displays in the SAS log the names of the definitions of the specified type in the specified locale. The return value of the function is the total number of definitions that are displayed in the log.
| Examples |
The following example displays in the SAS log a list of all of the definition names in the first locale in the locale list:
num=dqLocaleInfoList('all');
The following example displays a list of the parse definitions in the DEDEU locale:
num=dqLocaleInfoList('parse', 'DEDEU');
| See Also |
Copyright © 2007 by SAS Institute Inc., Cary, NC, USA. All rights reserved.