[Overview][Constants][Types][Procedures and functions] Reference for unit 'strutils' (#rtl)

AnsiContainsStr

Checks whether a string contains a given substring

Declaration

Source position: strutils.pp line 41

function AnsiContainsStr(

  const AText: String;

  const ASubText: String

):Boolean;

Arguments

AText

  

String to search in

ASubText

  

The substring to be searched for

Function result

Trueif the string contains the given substring, Falseotherwise

Description

AnsiContainsStringchecks whether ATextcontains ASubText, and returns Trueif this is the case, or returns Falseotherwise. The search is performed case-sensitive.

Errors

None

See also

AnsiContainsText

  

Check whether a string contains a certain substring, ignoring case.

AnsiEndsStr

  

Check whether a string ends with a certain substring

AnsiIndexStr

  

Searches, observing case, for a string in an array of strings.

AnsiStartsStr

  

Check whether a string starts with a given substring, observing case