This function replaces all defined substrings with the given replacement. It works like findReplaceAll() but ignoring the case.


findReplaceAllIgnoreCase(text, stringToBeReplaced, replacement) #Output: Text



Parser expressionDescription


findReplaceAllIgnoreCase("HellO my love, hELlo my friend.", "hello", "Goodbye")


This example returns:

Goodbye my love, Goodbye my friend.



Parameters used in this function

ParameterInput (data type)Description
text

Any given text.
stringToBeReplaced

The string that should be replaced.
replacement

The replacement for all found substrings matching the stringToBeReplaced.



This function returns a


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



Parser function cloudfindReplaceAllIgnoreCase()
Map(tick)
Notes






Status
Tech review

Style guide




Short description

Replaces all occurrences of a given substring with a given replacement, ignoring the case.

Output

Available since

Label