末尾の空白を含めた文字列の長さを返します。
文字定数、変数または式を指定します。
x=lengthc('variable with trailing blanks '); put x;
32
length fixed $35; fixed='variable with trailing blanks '; x=lengthc(fixed); put x;
35