I'm trying to replace a character within a string with an equivalent character in another string.
String after changes made:
#C/084&"
#3*#%#C
Original String:
#+/084&"
#3*#%#+
How can I replace all 'C's back to '+'?
Im not sure what you mean by "equivalent character", but if you mean replace all occurrences of a specific character anywhere in the string you can use string.replace('C','+').
string.replace('C',another_string[some_index])
str.replace?