javaScript String replacceAllが実現
241 ワード
定義:
すべての「\」を「_」に変換します.
String.prototype.replaceAll = function(s1,s2) {
return this.replace(new RegExp(s1,"gm"),s2);
}
例:すべての「\」を「_」に変換します.
docpath = docpath.replaceAll("\\\\","_") ;