RAD Studio VCL Reference
|
Indicates whether two strings are similar.
function SoundexProc(const AText: string; const AOther: string): Boolean;
Boolean SoundexProc(const AnsiString AText, const AnsiString AOther);
SoundexProc returns true if the string specified by AText is "similar" to the string specified by AOther, or false if the two strings are not sufficiently similar. SoundexProc is the default value of the AnsiResemblesProc variable, which provides the underlying implementation of AnsiResemblesText.
SoundexProc uses a Soundex algorithm to convert both strings into a phonetic representation where each character of the resulting string represents one of six families of similar phonemes. It then compares up to 4 digits in the resulting representation, returning true if they are all the same and false if they are not.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|