Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to do the comparision of two string?
set key = "t_bpid|t_nama|t_ccur";
set newkey = "t_bpid|t_nama|t_seak|t_ccur";
if $(key)<>$(newkey) then
Hi,
try with this:
if key <> newkey then ...
regards
Hello,
You can use this too :
if not match(key,keynewkey) then
Amand Dupretz
Hi U can use like below
Set A=Kabilan;
Set B=Kavi;
if A<>B then
Set C=Sujitha;
end if
Regards,
Kabilan K
You need single quotes around the variables like:
if '$(key)' <> '$(newkey)' then
-Rob