上一頁|下一頁

KPROPCHAR 函數

將特殊字元轉換為一般字元。

類別: DBCS

語法

str=KPROPCHAR(<instr> )

必要的引數

str

結果字串。特殊字元會轉換為一般字元。

instr

輸入資料字串。

詳細資料

此函數會將特殊字元轉換為一般字元。KPROPCHAR 函數會轉換下列範圍中的字元:
  • 括住的英數值:\u2460 至 \u24FF。請參閱 http://www.unicode.org/charts/PDF/U2460.pdf
  • 什錦符號:\u2776 至 \u2793。請參閱 http://www.unicode.org/charts/PDF/U2700.pdf
  • 括住的 CJK 字母和月份:\u3200 至 \u32FF。請參閱 http://www.unicode.org/charts/PDF/U3200.pdf

範例

下列範例示範 KPROPCHAR 函數的功能:這些範例會在 UTF8 SAS 工作階段中進行處理:
length in1 out1 $30 ;
in1=unicode('\u2460\u2473\u277F\u325F');
out1=KPROPCHAR(in1);
put out1;
RESULTS:
(1)(20)(-10)(35)
陳述式
結果
data _null_;
length in1 out1 $30 ;
in1=unicode('\u2460\u2473\u277F\u325F');
out1=KPROPCHAR(in1);
put out1;
run;
(1)(20)(-10)(35)
data _null_;
length in1 out1 $30 ;
in1=unicode('\u2776\u2793');
out1=KPROPCHAR(in1);
put out1;
run;
(-1)(-10)
data _null_;
length in1 out1 $30 ;
in1=unicode('\u3200\u32FE');
out1=KPROPCHAR(in1);
put out1;
run;
kpropchar 函數
上一頁|下一頁|頁面頂端