| You are reading help file online using chmlib.com | 
| 
 TMemoBuf. ReplaceAll method | Top Previous Next | 
| Declaration procedure ReplaceAll(SearchText: string; ReplaceText: string; CaseMatters: Boolean); 
 Category 
 Description This method will replace all occurrences of SearchText with ReplaceText. If CaseMatters is true then the case of the characters must match; otherwise, case will not be a factor for a match. 
 See also TMemoBuf Class, SearchFirst, SearchNext 
 Example (Delphi) MemoBuf.ReplaceAll('ame, Name, false); MemoBuf.ReplaceAll('ddress, Address, false); 
 Example (C++Builder) MemoBuf->ReplaceAll("ame, Name, false); MemoBuf->ReplaceAll("ddress, Address, false); | 
| You are reading help file online using chmlib.com |