Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
" を\"Javascriptに置き換えたい。
"
\"
私は持っている:
text = text.toString().replace("\"", '\\"')
結果:
\\"
これを試して:
text = text.toString().replace(/"/g, '\\"')
またはこれ:
text = text.toString().replace('"', '\\"')
これは次のようになります。
text = text.toString().replace("\"", '\\\"');
基本的に、「\」と「"」の両方を\でエスケープする必要があります