views:

18

answers:

1

for example i have two strings 0000 and 0001 then

         0000
         0001
         ----
result=  000-  here difference is indicated by - sign
A: 

You can compare each character in the string:

Dim s1 = "0000"
Dim s2 = "0001"

Dim result = ""

If s1.Length = s2.Length Then

    For a = 0 To s1.Length - 1

        If s1(a) <> s2(a) Then
            result &= "-"
        Else
            result &= s1(a)
        End If

    Next

End If

Result = 000-

JTA
Thanks bro.. :)
m.qayyum