how to compare two array ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Rohullah
    New Member
    • Mar 2010
    • 43

    how to compare two array ?

    Hello

    I want to compare two array and save the miss match caharector into 3rd array.

    how to do it give me the best answer.
  • tlhintoq
    Recognized Expert Specialist
    • Mar 2008
    • 3532

    #2
    A loop within a loop

    loop through Array 1
    Select an element
    Loop through Array 2
    Was a match found to the element from loop 1?
    If no match, add it to array 3

    Comment

    Working...