System.StrUtils.AnsiEndsStr
Delphi
function AnsiEndsStr(const ASubText, AText: string): Boolean;
C++
extern DELPHI_PACKAGE bool __fastcall AnsiEndsStr(const System::UnicodeString ASubText, const System::UnicodeString AText)/* overload */;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.StrUtils.pas System.StrUtils.hpp |
System.StrUtils | System.StrUtils |
Description
Indicates whether one string is a (case-sensitive) suffix of another.
AnsiEndsStr returns true if the string specified by ASubText appears as the trailing part of the string specified by AText. Comparison is performed case-sensitively.