DS2関数(文字列)
文字列の長さを取得する
LENGTH関数 val = length(str); ... https://documentation.sas.com/doc/ja/pgmsascdc/v_061/ds2ref/n1lb...
文字列中の指定文字列の位置を取得する
FIND関数 pos = find(string, substring); pos = find(string, substring, startpos); ... https://docum...
入力された文字列を区切り、n番目の単語を取得する
SCAN関数 str = scan(input_str, n, delimiter); https://documentation.sas.com/doc/ja/pgmsascdc/v_061/...