Indicates whether one string is a (case-sensitive) substring of another.
function AnsiContainsStr(const AText: string; const ASubText: string): Boolean;
Boolean AnsiContainsStr(const AnsiString AText, const AnsiString ASubText);
StrUtils
AnsiContainsStr returns true if the string specified by ASubText appears as a substring of the string specified by AText. Comparison is performed case-sensitively.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|