This function replaces all defined substrings with the given replacement. It works like findReplaceAll() but ignoring the case.
Bash
findReplaceAllIgnoreCase(text, stringToBeReplaced, replacement) #Output: Text
If you want to use a regular expression to find the substrings that should be replaced, have a look the the replaceAll() function.
If you want to replace only the first occurence of a substring, have a look at findReplaceFirstIgnoreCase().
📚 Use cases and examples
| Use case |
|---|
| No content found. |