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

AnsiStartsText

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

Declaration

Source position: strutils.pp line 31

function AnsiStartsText(

  const ASubText: String;

  const AText: String

):Boolean;

Arguments

ASubText

  

Substring to check for

AText

  

String to check in

Function result

Trueif the given string starts with the substring, Falseif not.

Description

AnsiStartsTextchecks ATextto see whether it starts with ASubText, and returns Trueif it does, Falseif not. The check is performed case-insensitive. Basically, it checks whether the position of ASubTextequals 1.

Errors

None.

See also

AnsiEndsText

  

Check whether a string ends with a certain substring, ignoring case.

AnsiStartsStr

  

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

AnsiIndexText

  

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

AnsiContainsText

  

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