string.replace(/([\t])/g,"\\$1")
どこでも正常に動作しています
string.replace(/([\n])/g,"\\$1")
動作していません!!!
何か考えてください???
注意
string.replace(/\n/g,"\\\n")
も正常に動作しています
string.replace(/([\t])/g,"\\$1")
どこでも正常に動作しています
string.replace(/([\n])/g,"\\$1")
動作していません!!!
何か考えてください???
注意
string.replace(/\n/g,"\\\n")
も正常に動作しています