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

Check variables defined as type string.

Former Member
0 Likes
309

Hi,

in a method I have two variables V1,V2 type string.

I try to check:

if V1 = V2.

endif.

But seems not possible.

Any idea?

Thanks.

Regards.

Giovanni

1 REPLY 1
Read only

Former Member
0 Likes
284

Sorry for the trouble.

My mistake was:

if V1 = "value".

but it is correct:

if V1 = 'value'.

Regards,

Giovanni