replace
Syntax
<string>.replace(old, new[, old2, new2...])replace(input, old, new[, old2, new2...])Arguments
Examples
dasel '"hello world".replace("world", "there")'hello thereNotes
Last updated
<string>.replace(old, new[, old2, new2...])replace(input, old, new[, old2, new2...])dasel '"hello world".replace("world", "there")'hello thereLast updated
dasel 'replace("hello world", "world", "there")'hello theredasel '"a-b-c".replace("-", "_", "a", "x")'x_b_cdasel 'replace("one two three", "one", "1", "two", "2", "three", "3")'1 2 3