‎2011 Feb 24 7:54 AM
Dear All,
Please assist me to remove '#' symbol within my text. example 'A###B###C' and replace the '#' with space. tq
Moderator message: very basic, please search for available information, study ABAP documentation before asking
Edited by: Thomas Zloch on Feb 24, 2011 10:48 AM
‎2011 Feb 24 8:00 AM
Try this.
DATA: var TYPE string.
START-OF-SELECTION.
var = 'A###B###C'.
REPLACE ALL OCCURRENCES OF '#' IN var WITH space.
WRITE: var.