replace(s::AbstractString, pat=>r; [count::Integer])
https://docs.julialang.org/en/v1/base/strings/#Base.replace-Tuple{AbstractString,%20Pair}
If I want to make two replacements in one pass I have to use regex? It seems like I should be able to do
replace("hello world", "hello" => "hi", "world" => "julia")