这是我的代码:
function toCamelCase(str){
var rest = str.replace((/-/)|(/_/)g, "") ;
document.write(rest);
}
toCamelCase("the-stealth_warrior");
我得到
Uncaught SyntaxError: missing )
我希望我的正则表达式删除下划线和连字符。 最佳答案
这是简单的答案
function toCamelCase(str){
var rest = str.replace(/[_-]/g, " ");
document.write(rest);
}
toCamelCase("the-stealth_warrior");
关于javascript - 为什么不能在此正则表达式中起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36067234/