Check whether 2 strings resemble each other.
Source position: strutils.pp line 37
function AnsiResemblesText( |
const AText: AnsiString; |
const AOther: AnsiString |
):Boolean; |
AText |
|
First text to compare. |
AOther |
|
Second text to compare. |
True if the words match, False if not.
AnsiResemblesText will check whether AnsiResemblesProc is set. If it is not set, False is returned. If it is set, AText and AOtherText are passed to it and it's result is returned.
None.
|
Procedural variable, called when checking 2 strings for resemblances in AnsiResemblesText. |
|
|
Default AnsiResemblesText implementation. |