文字列に割り当てられたメモリの量を返します(バイト単位)。
カテゴリ: | 文字 |
制限事項: | この関数は、I18Nレベル2に準拠しており、SBCS、DBCSおよびMBCS(UTF8)での使用目的で設計されています。 |
data _null_; x='x'; y='y'; lc=lengthc(cat(x, y)); lm=lengthm(cat(x, y)); put lc= lm=; run;
lc=2 lm=32767
data _null_; file 'test.txt'; put 'trailing blanks '; run; data test; infile 'test.txt'; input; x=lengthm(_infile_); put x; run;
256