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.
「\」文字を空の「」に置き換えようとしましたが、できません。それを解決する方法は?
これが私のコードです
abc = abc.replace('\','');
バックスラッシュをエスケープする必要があると思います:
abc = abc.replace('\\', '');
すべてのオカレンスを置き換えたい場合は、次を試すことができます。
var pattern = '\\\\'; var re = new RegExp(pattern, 'g'); abc = abc.replace(re, '');