2
I have in the database a column of the type varchar that takes a JSON. That column is the description of a company, but in 4 languages. The logic I have is the following:
{  
    "PT":"Descrição com "aspas" quebra o meu código",  
    "ES":" ",  
    "FR":"fr ",  
    "EN":" en"  
}
How I make JSON` read correctly when I have quotes in the company description?
That’s what I realized and have asked gurus how I can add this using regex in this question: http://answall.com/questions/187190/montar-regex-para-alterar-string-json
– ihavenokia