指定資料集中的訊息。傳回的訊息是根據目前地區設定和指定的索引鍵。
類別: | 地區設定 |
#
|
變數名稱
|
類型
|
長度
|
描述
|
---|---|---|---|---|
1
|
locale
|
char
|
5
|
訊息的語言
|
2
|
key
|
char
|
60
|
識別訊息的索引鍵
|
3
|
lineno
|
num
|
5
|
反向的訊息行號
|
4
|
text
|
text
|
1,200
|
訊息的文字
|
%let basename=MyProduct; proc sort data=t.&basename; by locale key descending lineno; run; proc datasets lib=t memtype=data; modify &basename; index create indx=(LOCALE KEY); run; quit;
陳述式
|
結果
|
---|---|
msg = sasmsg ("nls.mymsg","IN_CD_LOG", "noquote","cat","dog"); IN_CD_LOGINFO = My %#1s. Your %#2s |
msg= My cat. Your dog. |
IN_CD_LOGINFO = My %#2s. Your %#1s |
msg= My dog. Your cat. |