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

print a variable between '()'

Former Member
0 Likes
526

hi friends,

i have a string.

right now i'm doing this way.

concatenate l_var1 l_var2 into string.

my requirement is it should be l_var1(l_var2)...like x(y).

Plz help me

Thanks

Praveen

1 ACCEPTED SOLUTION
Read only

former_member196280
Active Contributor
0 Likes
508

CONCATENATE l_var1 '(' l_var2 ')' into String.

Reward points for all useful answers.

Regards,

Sairam

3 REPLIES 3
Read only

former_member196280
Active Contributor
0 Likes
509

CONCATENATE l_var1 '(' l_var2 ')' into String.

Reward points for all useful answers.

Regards,

Sairam

Read only

dev_parbutteea
Active Contributor
0 Likes
508

Hi,

try

concatenate l_var1 '(' l_var2 ')' into string

Regards,

Sooness

Read only

0 Likes
508

Many Many Thanks masters.......