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: 

How to cancle the wildcard ???

Former Member
0 Kudos

I want to write a sentence :

concatenate ’’’ text ''' into text .

that is mean i want add quotation mark before and behind the text .

how can i do it ,

concatenate ’/’’ text '/'' into text . is not work !!!

2 REPLIES 2

Former Member
0 Kudos

I have tested following code and it works.

data: l_text type string.

l_text = 'Test'.

write:/ l_text.

concatenate '"' l_text '"' into l_text.

write:/ l_text.

This is a output.

Test

"Test"

ashish

Message was edited by:

Ashish Gundawar

Former Member
0 Kudos

HEHE THANKS

best wishes !