Returns the amount of memory (in bytes) that is allocated for a character string.
Category: | Character |
Restriction: | I18N Level 2 functions are designed for use with SBCS, DBCS, and MBCS (UTF8). |
data _null_; x='x'; y='y'; lc=lengthc(cat(x,y)); lm=lengthm(cat(x,y)); put lc= lm=; run;