replaceAllRegex()

Replace all occurrences of a String matching the regular expression.

Signature

replaceAllRegex(match: String, replace: String): String

Description

The replaceAllRegex() method returns a string with all occurrences matching the match regular expression replaced by replacement.

Parameters

Parameter Type Required Description

match

String

Yes

Regular expression to match on the input string.

replace

String

Yes

String to replace the string matching the match regex.

Return value

Type Description

String

String with all occurrences matching match replaced by replace.

Examples

"1234".replaceAllRegex('\\w', 'abc-')
"abc-abc-abc-abc-"

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!