[Overview][Constants][Types][Procedures and functions] |
Search and replace all occurrences of a string, case insensitive.
Source position: strutils.pp line 33
function AnsiReplaceText( |
const AText: String; |
const AFromText: String; |
const AToText: String |
):String; |
AText |
|
String in which to search and replace. |
AFromText |
|
String to search for |
AToText |
|
String to replace with |
Result of the search and replace operation.
AnsiReplaceStringsearches ATextfor all occurrences of the string AFromTextand replaces them with AToText, and returns the resulting string. The search is performed ignoring case.
None.
|
Search and replace all occurrences of a string, case sensitive. |
|
|
Search a buffer for a certain string. |