Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Punctuation classes or Function Modules question

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

former_member194669
Active Contributor
0 Kudos

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.

2 REPLIES 2

former_member194669
Active Contributor
0 Kudos

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.

Former Member
0 Kudos

There are functions like STRING_REPLACE too