[Overview][Constants][Types][Procedures and functions] |
Check whether a string contains a certain substring, ignoring case.
Source position: strutils.pp line 30
function AnsiContainsText( |
const AText: String; |
const ASubText: String |
):Boolean; |
AText |
|
The string to be searched |
ASubText |
|
The substring to search for |
Trueif the substring was found, Falseotherwise.
AnsiContainsStringchecks whether ATextcontains ASubText, and returns Trueif this is the case, or returns Falseotherwise. The search is performed case-insensitive.
|
Checks whether a string contains a given substring |
|
|
Check whether a string ends with a certain substring, ignoring case. |
|
|
Searches, case insensitive, for a string in an array of strings. |
|
|
Check whether a string starts with a given substring, ignoring case |