我知道这个问题在这个平台上被问过很多次,但我无法理解如何使用下面的字符串对反斜杠字符(\)进行拆分。student\boy我试图分裂,但它给了.\undefinedfunction getSecondPart(str) { return str.split("\\")[1];}console.log(getSecondPart("student\boy"));我看到它正在考虑(退格),所以如果我指定,它会给出,但我需要子字符串作为。\bstr.split("\b")[1]oyboy
1 回答
森栏
TA贡献1810条经验 获得超5个赞
字符串中的反斜杠不被视为反斜杠,而是视为特殊字符“\b”。如果要在字符串中使用反斜杠,则需要使用双反斜杠。
"student\\boy" // will return "student\boy"
getSecondPart("student\\boy") // will return "boy"
添加回答
举报
0/150
提交
取消