SoundexSimilar
Check whether 2 strings have equal soundex values
Declaration
Source position: strutils.pp line 150
function SoundexSimilar(const AText: string; const AOther: string;
ALength: TSoundexLength) : Boolean;
function SoundexSimilar(const AText: string; const AOther: string)
: Boolean;
Description
SoundexSimilar returns True if the soundex codes (with length ALength) of AText and AOther are equal, and False if they are not.
Errors
None.
See also
Name | Description |
---|---|
Soundex | Compute the soundex of a string |
Soundex | Compute the soundex of a string |
SoundexCompare | Compare soundex values of 2 strings. |
SoundexInt | Soundex value as an integer. |
SoundexProc | Default AnsiResemblesText implementation. |
SoundexWord | Calculate a word-sized soundex value |