System.StrUtils.AnsiContainsStr
Delphi
function AnsiContainsStr(const AText, ASubText: string): Boolean;
C++
extern DELPHI_PACKAGE bool __fastcall AnsiContainsStr(const System::UnicodeString AText, const System::UnicodeString ASubText)/* 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) substring of another.
AnsiContainsStr returns true if the string specified by ASubText appears as a substring of the string specified by AText. Comparison is performed case-sensitively.