[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Search and replace all occurrences of a string, case sensitive.
Source position: strutils.pp line 44
function AnsiReplaceStr( |
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
AnsiReplaceString searches AText for all occurrences of the string AFromText and replaces them with AToText, and returns the resulting string. The search is performed observing case.
None.
|
Search and replace all occurrences of a string, case insensitive. |
|
|
Search a buffer for a certain string. |