📌  相关文章
📜  正则表达式替换 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:58.142000             🧑  作者: Mango

代码示例1
// replaces all / in a String with _
str = str.replace(/\//g,'_');