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

NameTypeRequiredDescription
searchListstring✔️The list of characters that should be replaced.
replacementListstring✔️The list of characters that should replace the characters in searchList.
sourcestring✔️A string to search.

Returns

source after replacing all occurrences of characters in ‘replacementList’ with the corresponding characters in ‘searchList’

Examples

InputOutput
translate("abc", "x", "abc")"xxx"
translate("abc", "", "ab")""
translate("krasp", "otsku", "spark")"kusto"