System.AnsiStrings.EndsStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function EndsStr(const ASubText, AText: AnsiString): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall EndsStr(const System::AnsiString ASubText, const System::AnsiString AText)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.AnsiStrings.pas
System.AnsiStrings.hpp
System.AnsiStrings System.AnsiStrings

Description

Test if trailing part of text matches subtext with case-sensitivity.

EndsStr returns true if the trailing part of the given text matches the subtext with case-sensitivity and returns false otherwise. The compare operation is controlled by the current locale. This function is the same as AnsiEndsStr.

Use EndsText to make this test without case-sensitivity.

See Also