In PHP, suppose I have two arrays:
$Strings_a = array( 27 => 'Michael Woolf Yard | UU',
32 => 'Samantha Gale | XO',
17 => 'Rosson Morse | UU',
42 => 'Spencer Farrow | XO',
53 => 'Sotherby Farrow | SG',
... );
$Strings_b = array( 34 => 'Sam Gale | XO',
89 => 'Mycael W. Yaars | UU',
12 => 'S. Farrow | SG',
... );
The two arrays are of different size, but some of the strings in $Strings_a are quite similar to some of the strings in $Strings_b.
The strings are quite short, e.g. no more than 50 chars, and the arrays are something like 3000 elements each.
Each string ends with a pipe separating a two-chars code, that distinguishes "groups". Those "groups" could be used as clues for the association.
So, I would like to obtain an array with:
$Strings_out = array( 27 => 89, // i.e. 'Michael Woolf Yard | UU' --> 'Mycael W. Yaars | UU'
32 => 34, // i.e. 'Samantha Gale | XO' --> 'Sam Gale | XO'
53 => 12, // i.e. 'Sotherby Farrow | SG' --> 'S. Farrow | SG'
... );
...writing somewhere (e.g. in another array, or rendering $Strings_out as a multidimensional array with this information included) the "score" of similarity, for each of the elements of $Strings_out.
In other words, I'm interested in obtaining the ids of $Strings_a associated to those of $Strings_b, in such a way that the strings in $Strings_a are likely to represent the same entities specified in $Strings_b with that association, because the differences of the strings exist just because different individuals have independently written names for the same entities, e.g. with errors or different conventions, or no conventions at all.
Note: That one specified above is just a way to represent those informations (ids, short-strings, groups-codes) for the question purpose, so for the answer feel free to eventually use a different representation for those same informations.
EDIT: time is not a problem, better accurate than fast.