ABAP顾问
分类:
2008-02-19 13:58:27
qdbarry2008-03-18 15:11:26
写了一个FORM,用来计算单/双字节的,没有在UNICODE环境测试。 你可以测试一下,看能不能用。 如果能用,你只要根据算出的字节数,再添加(256-len)数目的空格就可以了。 REPORT z_barry_test NO STANDARD PAGE HEADING . DATA: input1(100) TYPE c , outch1(100) TYPE c , outen1(100) TYPE c , len TYPE i. input1 = '中国zhongguo人民renmin'. PERFORM nounicode USING input1 outch1 outen1 len. WRITE : / 'Input: ' , input1 , / '提取双字节: ' , outch1 , / '提取单字节: ' , outen1 , / '非UNICODE长度:' , len . *&------