| [Overview][Resource strings][Constants][Types][Procedures and functions][Index] | 
Replace strings case-insensitively
Source position: strutils.pp line 130
function ReplaceText(  | 
const AText: string;  | 
const AFromText: string;  | 
const AToText: string  | 
):string;  | 
ReplaceText is a utility function that scans AText and replaces all occurrences of AFromText (case insensitive) with AToTextand returns the resulting string. It simply calls StringReplace with the appropriate options.
  | 
Replace occurrences of one substring with another in a string.  | 
|
  | 
Replace strings case-insensitively  |