Indicates whether one string is a (case-insensitive) suffix of another.
function AnsiEndsText(const ASubText: string; const AText: string): Boolean;
Boolean AnsiEndsText(const AnsiString ASubText, const AnsiString AText);
StrUtils
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.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|