replace_regex()

Learn how to use the replace_regex() function to replace all regex matches with another string.

Replaces all regular expression matches with a specified pattern.

Syntax

replace_regex(source,lookup_regex, rewrite_pattern)

Parameters

NameTypeRequiredDescription
sourcestring✔️The text to search and replace.
lookup_regexstring✔️The regular expression to search for in text. The expression can contain capture groups in parentheses. To match over multiple lines, use the m or s flags. For more information on flags, see Grouping and flags.
rewrite_patternstring✔️The replacement regex for any match made by matchingRegex. Use \0 to refer to the whole match, \1 for the first capture group, \2 and so on for subsequent capture groups.

Returns

Returns the source after replacing all matches of lookup_regex with evaluations of rewrite_pattern. Matches do not overlap.

Example

range x from 1 to 5 step 1
| extend str=strcat('Number is ', tostring(x))
| extend replaced=replace_regex(str, @'is (\d+)', @'was: \1')

Output

xstrreplaced
1Number is 1.000000Number was: 1.000000
2Number is 2.000000Number was: 2.000000
3Number is 3.000000Number was: 3.000000
4Number is 4.000000Number was: 4.000000
5Number is 5.000000Number was: 5.000000