REReplaceNoCase(string, reg_expression, substring [, scope ])
string
Any string.
reg_expression
Regular expression to be replaced. This regular expression can include POSIX-specified character classes (for example, [:alpha:], [:digit:], [:upper:], and [:lower:]).
substring
String replacing reg_expression.
scope
Defines how to complete the replace operation:
ONE -- Replace only the first occurrence (default).
ALL -- Replace all occurrences.
|