Fermat
Search
K
Comment on page

Replace

You can replace a specified element with another element in a structure.
replace [element] with [element] in [structure]
Here, you can find an example with a text and a list:
replace "o" with "i" in "Arbor"
replace "a" with "b" in ["Arbor", "a"]
Output:
> Arbir
> ["Arbor", "b"]