上一頁|下一頁

%KLENGTH 巨集函數

傳回字串長度。

類別: DBCS
類型: NLS 巨集函數

語法

%KLENGTH (character string | text expression)

詳細資料

如果引數是字元字串,則 %KLENGTH 會傳回字串長度。如果引數是文字運算式,則 %KLENGTH 會傳回所解析值的長度。如果引數具有 Null 值,則 %KLENGTH 會傳回 0。

範例: 傳回字串長度

下列陳述式會尋找字元字串和文字運算式的長度:
%let a=Happy;
%let b=Birthday;
%put The length of &a is %klength(&a).;
%put The length of &b is %klength(&b).;
%put The length of &a &b To You is %klength(&a &b to you).;
執行這些陳述式時,會將下行寫入 SAS 日誌:
The length of Happy is 5.
The length of Birthday is 8.
The length of Happy Birthday To You is 21.
上一頁|下一頁|頁面頂端