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.
パスは「C:/TEST/」のようなもので、「C:\TEST\」に変換したくて、いろいろ探して不安でした。
\はエスケープ シーケンスの開始を示すため、別の でエスケープする必要があります\。
\
グローバルに置き換えるには、正規表現を使用する必要があります。これには、さらに多くの文字エスケープが必要です。
> 'C:/TEST/'.replace(/\//g, '\\') "C:\TEST\"
"C:/TEST/".replace(/\//g, '\\')