Application Development and Automation 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: 
Read only

Punctuation classes or Function Modules question

Former Member
0 Likes
495

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
Read only

former_member194669
Active Contributor
0 Likes
459

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
Read only

former_member194669
Active Contributor
0 Likes
460

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.

Read only

Former Member
0 Likes
459

There are functions like STRING_REPLACE too