public static string ReplaceAll(this string source, StringComparison comparison, params String[] replacements);
Replace all occurences of a number of strings.
Parameters
| Name | Type | Description |
| source | string | Source string. |
| comparison | StringComparison | Type of string comparison to use. |
| replacements | params String[] | Array of strings to match and their replacements. Each string to be replaced at odd index i must have a replacement value at index i+1. |
Returns
Type: string
String with replacements performed on it.