Age: 46 Joined: 05 Nov 2007 Posts: 725 Location: КраснАдар
Posted: Wed Jan 09, 2008 1:30 pm Post subject:
В отладчике спецсимволы отражаются как '##'. Точно не уверен, но кажется что многие. Возможно, что в Вашей строке не перевод каретки, как я предполагал, а что нибудь другое (NEWLINE например). Точно определите, что находится в текстовой переменной и сплитуйте уже по этому спецсимволу.
ЗЫ Я сделал у себя тестовый пример - он работает:
Code:
DATA: STR TYPE STRING, ITAB TYPE TABLE OF C WITH HEADER LINE.
CLASS CL_ABAP_CHAR_UTILITIES DEFINITION LOAD. " делал в MBS
CONCATENATE 'X' CL_ABAP_CHAR_UTILITIES=>CR_LF 'Y' INTO STR.
WRITE / STR.
SPLIT STR AT CL_ABAP_CHAR_UTILITIES=>CR_LF INTO TABLE ITAB.
LOOP AT ITAB.
WRITE / ITAB.
ENDLOOP.
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.