[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Check whether 2 strings resemble each other.
Source position: strutils.pp line 29
function AnsiResemblesText( |
const AText: string; |
const AOther: string |
):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. |