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

Non conversion string

Former Member
0 Likes
492

Hello,

I have a little problem

Data: s_string type string,

x_string type xstring.

x_string = ''7369676E6563726F6978'.

I want to have

s_string = ''7369676E6563726F6978'.

without any conversion

is-it possible ?

Best regards

Thierry Chiret

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
470

Data: s_string type string,

x_string type xstring.

x_string = '7369676E6563726F6978'.

s_string = x_string.

WRITE : / s_string, /, x_string.

its working fine. simplu assign x_string to s_string. no external conversion is needed.

3 REPLIES 3
Read only

Former Member
0 Likes
470

Hi

Try

write x_string to s_string .

Regards

Aditya

Read only

Former Member
0 Likes
471

Data: s_string type string,

x_string type xstring.

x_string = '7369676E6563726F6978'.

s_string = x_string.

WRITE : / s_string, /, x_string.

its working fine. simplu assign x_string to s_string. no external conversion is needed.

Read only

Former Member
0 Likes
470

Thanks a lot.