RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
StrUtils.SoundexProc Function

Indicates whether two strings are similar.

Pascal
function SoundexProc(const AText: string; const AOther: string): Boolean;
C++
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.

Note: SoundexProc is the same as the SoundexSimilar function using an ALength value of 4.
 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!