I have input text that contains a \' like in this text \"Frank\'s Reel Movie Reviews\"
how do I get rid of the \'
I have tried
.replace (/\\\'/ig
Assuming you're working with Java, have you tried .replaceAll("'", "")? Works for me.