Posted: Wed Oct 31, 2007 10:56 am Post subject: Преобразование HEX <-> CHAR
Привет!
Какие есть функциональные модули в ABAP для преобразования кода ASCII в символ и обратно? На подобии строковых функции в других языках:
CHR(n) Возвращает строку с символом с заданным кодом.
HEX(n) Возвращают строку с шестнадцатеричным представлением целого числа n.
для более старых версии, например FM URL_ASCII_CODE_GET
Посмотрите его содержимое, использование ASSIGN ... CASTING
один из универсальных способов преобразования типов, даже в юникодной системе
Code:
FUNCTION url_ascii_code_get.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*" IMPORTING
*" VALUE(TRANS_CHAR) TYPE URL_CHAR
*" EXPORTING
*" VALUE(CHAR_CODE) TYPE URL_CODE
*"----------------------------------------------------------------------
FIELD-SYMBOLS:
<critical_x> TYPE x.
ASSIGN trans_char TO <critical_x> CASTING.
WRITE <critical_x> TO char_code.
ENDFUNCTION.
на основании этого кода, можно сделать обратное преобразование:
Code:
DATA: v_char.
FIELD-SYMBOLS: <fs> TYPE x.
DATA: v_int1 TYPE INT4.
v_char = 'й'.
ASSIGN v_char TO <fs> CASTING TYPE X.
v_int1 = <FS>.
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.