‎2008 Sep 17 6:58 PM
Hello gurus,
Are there any classes or function modules that deal with bracketing common punctuation symbols.
I'm dealing with some extracts for an Ariba interface.
I need to take a quote character (") and make it a double quote ("") and other things like that in ascii strings.
Thanks
Ed Baker
‎2008 Sep 17 7:21 PM
Try this way
constants : c_q(1) type c value '"',
c_quot(4) type c value ''''. " For value '
replace all occurrences of c_quot in text with c_q.
a®
‎2008 Sep 17 7:21 PM
Try this way
constants : c_q(1) type c value '"',
c_quot(4) type c value ''''. " For value '
replace all occurrences of c_quot in text with c_q.
a®
‎2008 Sep 17 8:14 PM