Hi All,
So I'm using Wordpress' database object to store things into tables. One of the drawbacks (or advantages, depending on how you look at it) is that it escapes the single and double quote characters so that:
' --> \'
" ---> \"
What regex can I apply to the output to replace all \' with ' and \" with "?