DelphiBasics
AnsiContainsText
Function
Returns true if a string contains a substring, case insensitive StrUtils unit
 function AnsiContainsText(const Haystack, Needle string):Boolean;
Description
The AnsiContainsText function looks for a Needle string in a Haystack string, returning true if it finds it. Otherwise false.
 
It is a Case insensitive command.
Related commands
AnsiContainsStrReturns true if a string contains a substring
AnsiStartsStrReturns true if a string starts with a substring
AnsiEndsStrReturns true if a string ends with a substring
 Download this web site as a Windows program.




 
Example code : A simple example
var
  haystack : AnsiString;
begin
  haystack := 'The cat sat on the mat';

  // Note that AnsiContainsText is case insensitive
  if AnsiContainsText(haystack, 'THE')
  then ShowMessage('''THE'' was found')
  else ShowMessage('''THE'' was not found');

  if AnsiContainsText(haystack, 'the')
  then ShowMessage('''the'' was found')
  else ShowMessage('''the'' was not found');
end;
Show full unit code
  'THE' was found
  'the' was found
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page