Say I have a string that looks like this:
str = \"The &yquick &cbrown &bfox &Yjumps over the &ulazy dog\"
You\'ll notic
try this
tr.replace("&y",dict["&y"])
tr.replace("&c",dict["&c"])
tr.replace("&b",dict["&b"])
tr.replace("&Y",dict["&Y"])
tr.replace("&u",dict["&u"])