|
RAD Studio VCL Reference
|
Replaces all occurrences of a substring within a string, using case-sensitive search.
function ReplaceStr(const AText: string; const AFromText: string; const AToText: string): string;
AnsiString ReplaceStr(const AnsiString AText, const AnsiString AFromText, const AnsiString AToText);
Use ReplaceStr to replace all occurrences of the substring AFromText with the string AToText, within the string AText. ReplaceStr returns the string obtained after replacement.
Use ReplaceText to do a case-insensitive replacement.
The StringReplace function is a more general replacement routine, giving case-sensitivity options, as well as the option to decide whether to replace all occurrences or the first occurrence of the substring in the string.
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|