string.rEReplace()
Uses a regular expression (RE) to search a string for a string pattern and replace it with another. The search is case-sensitive.
string.rEReplace( regex=string, substring=string, scope=string )
Returns: String
Examples
str = "count the NUMBERS 123... or ONE,TWO,THREE";
res = str.rereplace("[0-9]+","[one,two,three]","all");
writeDump(res);
res = str.rereplace("[a-z]+","1","all");
writeDump(res);
res = str.rereplace("[a-z]","1","all");
writeDump(res);
res = str.rereplace("[a-z]+","I Love Lucee","all");
writeDump(res);