STRING.replaceFirst
Replace a substring matching a regular expression.
Syntax
replaceFirst(
regex STRING,
replacement STRING )
RETURNS STRING
- regex is the regular expression to find substrings that must be replaced. See Regular expression patterns.
- replacement is the replacement string.
Usage
This method scans the current string value for the first substring matching the regular expression passed as first parameter, replaces the matching substring by the replacement string, and returns the new resulting string.
The replacement string can reference captured groups with the
$num
notation, where num is the ordinal
position of the group delimited by parentheses in the regular expression, and where
$0
represents the whole matching string.
Note: When using single or double quoted string literals, backslash is
interpreted as escape character. Consider using back
quotes as delimiters for regular expressions strings, and use backslash characters directly
as required by the regexp syntax (
`\b`
instead of "\\b"
or
'\\b'
)Example
MAIN
DEFINE s STRING
LET s = "ABC123DEF456"
DISPLAY s.replaceFirst(`[0-9]+`,"X")
END MAIN
Output:
ABCXDEF456