我知道这个问题在这个平台上被问过很多次,但我无法理解如何使用下面的字符串对反斜杠字符(\)进行拆分。
student\boy
我试图分裂,但它给了.\undefined
function getSecondPart(str) {
return str.split("\\")[1];
}
console.log(getSecondPart("student\boy"));
我看到它正在考虑(退格),所以如果我指定,它会给出,但我需要子字符串作为。\bstr.split("\b")[1]oyboy
森栏
相关分类