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

String Concatenation Problem

Former Member
0 Likes
333

Hi All,

I am trying to assign a text ( 'CT1', CT1C' ) to a string but its giving error

I am trying the following statement to assign the text.

doc_typ = ' ( ' CT1 ' , ' CT1C ' ) '.

please suggest

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
309

try this

concatenate '(' ' ''CT1'' ' ',' '''CT1C''' ' ) ' into text.

regards

shiba dutta

2 REPLIES 2
Read only

Former Member
0 Likes
309

Hi,

For ' give two single quotes in the string

doc_typ = <b>' ( '' CT1 '' , '' CT1C '' ) '</b>.

Thanks,

Naren

Read only

Former Member
0 Likes
310

try this

concatenate '(' ' ''CT1'' ' ',' '''CT1C''' ' ) ' into text.

regards

shiba dutta