translate()
Learn how to use the translate() function to replace a set of characters with another set of characters in a given string.
Replaces a set of characters (‘searchList’) with another set of characters (‘replacementList’) in a given a string. The function searches for characters in the ‘searchList’ and replaces them with the corresponding characters in ‘replacementList’
Syntax
translate(
searchList,
replacementList,
source)
Parameters
Name | Type | Required | Description |
---|---|---|---|
searchList | string | ✔️ | The list of characters that should be replaced. |
replacementList | string | ✔️ | The list of characters that should replace the characters in searchList. |
source | string | ✔️ | A string to search. |
Returns
source after replacing all occurrences of characters in ‘replacementList’ with the corresponding characters in ‘searchList’
Examples
Input | Output |
---|---|
translate("abc", "x", "abc") | "xxx" |
translate("abc", "", "ab") | "" |
translate("krasp", "otsku", "spark") | "kusto" |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.