文字列から制御文字でない文字を検索し、最初に検索された文字の位置を返します。
検索する文字の定数、変数または式です。
検索の開始位置と検索方向を指定する整数値を使用する任意の数値定数、変数または式です。
data test; do dec=0 to 255; byte=byte(dec); hex=put(dec, hex2.); notcntrl=notcntrl(byte); output; end; proc print data=test; run;