System.AnsiStrings.StartsText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

extern DELPHI_PACKAGE bool __fastcall StartsText(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 leading part of text matches subtext without case-sensitivity.

StartsText returns true if the leading part of the given text matches the subtext without case-sensitivity and returns false otherwise. The compare operation is controlled by the current user locale. StartsText is the same as AnsiStartsText.

Use StartsStr to make this test with case-sensitivity.

See Also