HI expert.
I want to replace '.' with space . so I proceed below.
itab is composed to two feilds.
date1 type char10
date2 type char10
the field's values are '2011.01.01'.
REPLACE ALL OCCURRENCES OF REGEX '\b(.)\b'
IN TABLE ITAB WITH SPACE
RESPECTING CASE.
result.
date1 : '2011010120'
date2 : '110101'
but I want the result below.
date1 : '20110101'
date2 : '20110101'
what should i do?
please help.