Check whether one text ends with another.
Source position: strutils.pp line 46
function EndsText( |
const ASubText: string; |
const AText: string |
):Boolean; |
StarsText checks whether aText ends with aSubText and returns True if it does. i.e. it returns true if the last characters of aText are aSubText. It follows that the length of aText must be at least the length of aSubText. The comparison is made case-insensitive. If you wish to compare case-sensitively, use EndsStr instead.
|
Check whether a string ends with a certain substring. |
|
|
Check whether one string ends with another. |
|
|
Check whether one text starts with another. |