| Functions and CALL Routines |
Returns information about locales.
| Valid in: |
DATA step, PROC SQL, or SCL
|
|
DQLOCALEINFOGET(<'info-type'>)
|
- info-type
-
specifies the type of locale information that is to be returned.
| Restriction: |
if no parameter is specified, LOADED
is used by default. |
| Restriction: |
The only valid value is LOADED. |
The DQLOCALEINFOGET function returns a comma-delimited
list of locale names. The ordered list contains the names of the locales that
are currently loaded into memory. These locales are the ones that are available
for use in data cleansing.
The following example returns the locales that are currently loaded
into memory:
loadedLocales=dqLocaleInfoGet('loaded');
put loadedLocales;
If the locales ENUSA and ENGBR are loaded in that order, the return
value is ENUSA,ENGBR, and ENUSA is the default
locale.
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.