特殊文字を標準文字に変換します。
カテゴリ: | DBCS |
制限事項: | この関数にはI18Nレベル2ステータスが割り当てられ、SBCS、DBCS、およびMBCS (UTF8)と組み合わせて使用するように設計されています。 詳細については、次を参照してください。 国際化の互換性 |
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; |
|