Unit 'StrUtils' Package
[Overview][Resource strings][Constants][Types][Procedures and functions][Index] [#rtl]

AnsiMatchStr

Check whether a string occurs in an array of strings, observing case.

Declaration

Source position: strutils.pp line 56

function AnsiMatchStr(

  const AText: AnsiString;

  const AValues: array of AnsiString

):Boolean;

Arguments

AText

  

String to check for.

AValues

  

Array of string values to search in.

Function result

True if the value appears in the array, False if not.

Description

AnsiMatchStr matches AText against each string in AValues. If a match is found, it returns True, otherwise False is returned. The strings are matched observing case.

This function simply calls AnsiIndexStr and checks whether it returns -1 or not.


Documentation generated on: Jul 22 2023