Skip to content

Replace chars

REPLACE_CHARS

Type Function STRING
Input STR STRING (String input)
SRC STRING (search strings)
REP STRING (surrogate)
Output STRING (String output)
REPLACE_CHARS replaces all the characters STR in String SRC with the characters at the same place in REP.

replace_chars

Example:

REPLACE_CHARS('abc123', '0123456789', ABCDEFGHIJ') = 'abcABC'