This function searches a text a for occurrences of values specified as hex values in b and replaces them with the hex value in c at the same position.
Parameters
Parameter | Description |
|---|---|
a | Text in which to search. |
b | Comma-separated list of hexadecimal values to search for. |
c | Comma-separated list of hexadecimal values to be used for replacement. |
Examples
Parameter a | Parameter b | Parameter c | Result |
|---|---|---|---|
ABC | 41,42,43 | 44,45,46 | DEF |
abc€ | 20ac,41 | 45,44 | abcE |