Delphi Programming
This page is intended as a supplement to the official documentation on Delphi programming. CodeGear is in the process of putting the Delphi documentation on the Web. Once they have done so, this page will link to the relevant page in the official documentation.
This article is a stub.
Please help enhance the Delphi Programming Wiki by expanding it.
see the VCL Documentation Guidelines for an overview on doc pages

Unit[]

Description[]

Definition (Delphi 6):

function AnsiSameText(const S1, S2: string): Boolean;

Definition (Delphi 2009, 2010):

function AnsiSameText(const S1, S2: string): Boolean; inline; overload;

Technical Comments[]

(Known issues / Documentation clarifications / Things to be aware of)

Examples[]

var
  StringA, StringB: string;
begin
  StringA := 'Natal';
  StringB := 'nATAL';
  if AnsiSameText(StringA, StringB) then
    ShowMessage('The text in stringA is the same as the text in stringB.') //<== this will be shown
  else
    ShowMessage('The text in stringA is not the same as the text in stringB.');

  StringA := 'Natal';
  StringB := 'Natal';
  if AnsiSameText(StringA, StringB) then
    ShowMessage('The text in stringA is the same as the text in stringB.') //<== this will be shown
  else
    ShowMessage('The text in stringA is not the same as the text in stringB.');

  StringA := 'Natal';
  StringB := 'Natala';
  if AnsiSameText(StringA, StringB) then
    ShowMessage('The text in stringA is the same as the text in stringB.')
  else
    ShowMessage('The text in stringA is not the same as the text in stringB.');  //<== this will be shown

See Also[]

User Comments/Tips[]

(Please leave your name with your comment.)