
Replace all occurence of "pattern" by "replacement" in the string "src"
This does not use the "replaceAll()" method of the String class, which often leads to issues since it interprets
some charcaters such as "$".

Replace all occurence of "pattern" by "replacement" in the string "src"
This does not use the "replaceAll()" method of the String class, which often leads to issues since it interprets
some charcaters such as "$".
Rather it does a plain search/replace loop.
Returns:
Description of the Return Value
Parameters:
-
src - Description of the Parameter
-
pattern - Description of the Parameter
-
replacement - Description of the Parameter