ReplaceAll



Replace all occurrences of substring in specified string with specified value.

You can find more information in comments below.

/**
Replace all occurrences of substring "search" in string "str" on substring "replace" and return new string 
@param str String where to search 
@param search Searching string 
@param replace String to replace with 
@return String where all occurrences of "search" is replaced with "replace" 
*/
String ReplaceAll(const String &str, const String &search, const String &replace);
/**
Replace all occurrences of substring "search" in ANSI string "str" on substring "replace" and return new ANSI string 
@param str String where to search 
@param search Searching string 
@param replace String to replace with 
@return String where all occurrences of "search" is replaced with "replace" 
*/
AnsiString ReplaceAll(const AnsiString &str, const AnsiString &search, const AnsiString &replace);
/**
Replace all occurrences of substrings "search" in string "str" on substrings "replace" and return new string 
@param str String where to search 
@param search Searching strings 
@param replace Strings to replace with. The size should be equal to the size of "search" 
@return String where all occurrences of "search" is replaced with "replace" 
*/
String ReplaceAll(const String &str, const StringArray &search, const StringArray &replace);
/**
Replace all occurrences of substrings "search" in ANSI string "str" on substrings "replace" and return new ANSI string 
@param str String where to search 
@param search Searching strings 
@param replace Strings to replace with. The size should be equal to the size of "search" 
@return String where all occurrences of "search" is replaced with "replace" 
*/
AnsiString ReplaceAll(const AnsiString &str, const AnsiStringArray &search, const AnsiStringArray &replace);
Namespace: nitisa
Include: Nitisa/Core/Strings.h