Selectively replace multiple instances of a character within a string: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
Line 357: Line 357:


=={{header|Julia}}==
=={{header|Julia}}==
<syntaxhighlight lang="ruby">
<syntaxhighlight lang="julia">
rep = Dict('a' => Dict(1 => 'A', 2 => 'B', 4 => 'C', 5 => 'D'), 'b' => Dict(1 => 'E'), 'r' => Dict(2 => 'F'))
rep = Dict('a' => Dict(1 => 'A', 2 => 'B', 4 => 'C', 5 => 'D'), 'b' => Dict(1 => 'E'), 'r' => Dict(2 => 'F'))