cancel
Showing results for 
Search instead for 
Did you mean: 

concatination of variables

Former Member
0 Kudos

Hi,

How can i concatinate the variable x and y

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Use the CONCATENATE Key word.

<b>CONCATENATE x y into z.</b>

But make sure that the length of the varialbe x plus and the length of the varialbe y plus is atleast equal to the length of the varialbe z.

Otherwise you will loss the data in the destination variable.

Regards,

Rama.Pammi

Former Member
0 Kudos

hi Karthick,

do it

Data: x(5) value '12345',

y(5) value '67890',

z(10).

concatenate x y into z.

write z.

Regards

Allan Cristian