‎2004 Aug 06 3:03 PM
Hello all,
It took me a while to find a simple solution for stripping out hex tabs in a string in 4.7 so I thought I'd share it with you.
Rather than converting the string to xstring (and possibly back again) You can use hex codes with SPLIT if you define them as constants like this..
c_delimiter type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
This works with REPLACE too but I haven't tried it with other string handling commands.
‎2004 Nov 04 8:31 PM