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

how cna i concatinate two strings?

Former Member
0 Likes
796

how can i concatinate two strings?

1 ACCEPTED SOLUTION
Read only

former_member182354
Contributor
0 Likes
754

Use concatinate statement

Raghav

how can i concatinate two strings?

5 REPLIES 5
Read only

former_member182354
Contributor
0 Likes
755

Use concatinate statement

Raghav

Read only

Former Member
0 Likes
754

Hi,

data:

text 1(20) type c,

text2(20) type c,

text3(40) type c.

concatenate text1 text2 into text3.

regards

Nicole

Read only

Former Member
0 Likes
754

Hi,

Use Concatenate Statement..

Concatenate str1 str2 into str3.

Regards,

Narsimha

Read only

Former Member
0 Likes
754

Hi

if you have two string as

string1 = 'one'.

string2 = 'two'.

then you can concatenate the two strings into the third string as

CONCATENATE string1 string2 into string3 seperated by space.

regards

chythanya

Read only

Former Member
0 Likes
754

Hi,

Check the below code :

data:
text 1(20) type c Value 'SAP',
text2(20) type c 'Labs',
text3(40) type c.

concatenate text1 text2 into text3.

write text3.

Regards,

Raghu