文字列の指定した位置の1文字を返します。
文字定数、変数または式を指定します。
返す文字の位置を指定する整数です。
data test; retain string "abc"; do position = -1 to 4; result=char(string, position); output; end; run; proc print noobs data=test; run;