摘要: 1) js正则表达式 替换小括号中的斜杠: const str = "这是一个(带有/斜线)的字符串,(还有另一个/斜线)需要替换"; let replacedStr = str.replace(/\(.*?\)/g, function(match) { return match.replace(/ 阅读全文
posted @ 2024-10-17 10:43 苹果芒 阅读(9) 评论(0) 推荐(0) 编辑