Posted: Thu Dec 24, 2009 11:49 am Post subject: Вставка символа \x00 в текстовую строку.
Привет!
Перевожу текстовую строку из юникода в Windows-1251.
Количество символов в строке уменьшается в два раза, как составить символ конца строки (код \x00) в текстовую строку в определенное место?
data: str(1000) type char.
как то так
* str+500 = \x00.
Posted: Fri Dec 25, 2009 6:27 pm Post subject: Перевод строки
Неправильный подход.
Если хотите вставить переход на новую строку, то конкатинейтите CL_ABAP_CHAR_UTILITIES=>CR_LF
Code:
CONCATENATE motiv data1-motiv CL_ABAP_CHAR_UTILITIES=>CR_LF
INTO motiv.
Если же хотите добавить прямо код перехода строки, то сначала переводите в xstring, добавляете и обратно
* Convert text to xstring.
CALL FUNCTION 'SCMS_TEXT_TO_XSTRING' _________________ С Уважением, Абрамов Виктор.
The devil is in the detail.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.