Replaces substrings within a string. Case-dependent.
_string | String to make replacement in [String] |
_pattern | Substring to replace [String] |
_replacement | String to replace the _pattern with [String] |
String with replacements made [String]
_str = ["Fish frog cheese fromage", "fro", "pi"] call CBA_fnc_replace; // => "Fish pig cheese pimage"
BaerMitUmlaut