Given a string in Javacript, such as
var str = \"this\'s kelly\";
I want to replace the apostrophe (\') with another character. Here is what I\
Do this:
str = str.replace("'","A");