FireDAC.Comp.Script.FDKeywordMatch
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: FireDAC.Comp.Script.pas FireDAC.Comp.Script.hpp
| |
Unit: FireDAC.Comp.Script | |
Parent: FireDAC.Comp.Script |
Delphi
function FDKeywordMatch(const AStr, AMatch: String; AOptLength: Integer): Boolean;
C++
extern DELPHI_PACKAGE bool __fastcall FDKeywordMatch(const System::UnicodeString AStr, const System::UnicodeString AMatch, int AOptLength);
Description
Compares up to a specified maximum number of characters in two strings.
FDKeywordMatch compares AStr
to AMatch
, up to a maximum length of AOptLength
characters.
FDKeywordMatch returns True if the two strings match, False otherwise.