Regex ReplaceAll() Method

Replaces all matched parts of a string with a replacement value using the compiled regex.

Function Signature

 string ReplaceAll( string value, string replacement )

Parameters

Parameter Type Description

value

string

The string to be searched.

replacement

string

The value inserted into the string in the matched locations.

Return

Type Description

string

A string where all matches for the compiled Regex in "value" are replaced with "replacement".

Technical Details

SBM ModScript version: 11.3.

Example

var r = Regex(); // Regex object 'r'
r.Compile("\\d+"); // Compile regex expression "\d+"
var changed = r.ReplaceAll("12ab3d456e78", "ABC"); 
// Replace each group of digits in the first string "value" with the replacement string
Ext.WriteStream( changed );  

Result:

ABCabABCdABCeABC

Notes

None.

Related Topics

Regex