mdtendulkar
Active User
Joined: 29 Jul 2003 Posts: 237 Location: USA
|
|
|
|
Hello kiran,
Code: |
ws-string1 pic x(05) value 'india'
ws-string2 pic x(08) value 'india '
|
Strings comparison is as below
Code: |
if ws-string1 = ws-string2
display 'both the strings are same'
else
display 'strings are not same'
end if
|
|
|