[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Checks whether a string contains a given substring
Source position: strutils.pp line 48
function AnsiContainsStr( |
const AText: string; |
const ASubText: string |
):Boolean; |
AText |
|
String to search in |
ASubText |
|
The substring to be searched for |
True if the string contains the given substring, False otherwise
AnsiContainsString checks whether AText contains ASubText, and returns True if this is the case, or returns False otherwise. The search is performed case-sensitive.
None
|
Check whether a string contains a certain substring, ignoring case. |
|
|
Check whether a string ends with a certain substring |
|
|
Searches, observing case, for a string in an array of strings. |
|
|
Check whether a string starts with a given substring, observing case |