ReplaceAll

Summary

The ReplaceAll function searches a string using regular expressions and replaces all occurrences of one string with another.

Syntax

ReplaceAll(in, regex, replace)

Return Type

String

Details

For more information about regular expressions, see https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html.

Examples

ReplaceAll('10', '[0-9]','blah')
'blahblah'

Related Functions