文字列からコントロール文字を検索し、最初に検索された文字の位置を返します。
カテゴリ: | 文字 |
制限事項: | この関数は、I18Nレベル2に準拠しており、SBCS、DBCSおよびMBCS(UTF8)での使用目的で設計されています。 |
data test; do dec=0 to 255; drop byte; byte=byte(dec); hex=put(dec, hex2.); anycntrl=anycntrl(byte); if anycntrl then output; end; proc print data=test; run;