Application Development 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: 

Check variables defined as type string.

Former Member
0 Kudos
81

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

Former Member
0 Kudos
56

Sorry for the trouble.

My mistake was:

if V1 = "value".

but it is correct:

if V1 = 'value'.

Regards,

Giovanni