Check whether 2 strings have equal soundex values.
Source position: strutils.pp line 164
function SoundexSimilar( |
const AText: string; |
const AOther: string; |
ALength: TSoundexLength |
):Boolean; |
const AText: string; |
const AOther: string |
):Boolean; |
AText |
|
First string. |
AOther |
|
Second string. |
ALength |
|
Soundex length (default 4). |
True if the strings have the same soundex value, False otherwise.
AText |
|
First string. |
AOther |
|
Second string. |
SoundexSimilar returns True if the soundex codes (with length ALength) of AText and AOther are equal, and False if they are not.
None.
|
Compute the soundex of a string. |
|
|
Compare soundex values of 2 strings. |
|
|
Soundex value as an integer. |
|
|
Default AnsiResemblesText implementation. |
|
|
Calculate a word-sized soundex value. |
|
|
Compute the soundex of a string. |