System.StrUtils.AnsiEndsText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function AnsiEndsText(const ASubText, AText: string): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall AnsiEndsText(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-insensitive) suffix of another.

AnsiEndsText returns true if the string specified by ASubText appears as the trailing part of the string specified by AText. Comparison is performed case-insensitively and based on the current system locale.

See Also