|
在JavaScript中,转义字符是一种特殊的字符,它用反斜杠 (\) 开头,后面跟一个或多个字符。转义字符的目的是指定其后应该出现的字符为字面值,而不是任何特殊的字符,比如换行符、引号、反斜杠本身等。
以下是一些常用的JavaScript转义字符:
\n:换行符
\t:制表符(Tab)
\\:反斜杠本身
\':单引号
\":双引号
\xXX:由两位十六进制数XX指定的Latin-1字符
\uXXXX:由四位十六进制数XXXX指定的Unicode字符
例子:
let text = "He said, \"Hello, how are you?\"";
console.log(text); // 输出:He said, "Hello, how are you?"
let specialChars = "This is a tab: \t and this is a newline:\n";
console.log(specialChars);
// 输出:This is a tab: and this is a newline:
let backslash = "This is a backslash: \\";
console.log(backslash); // 输出:This is a backslash: \
let hexChar = "\x41"; // ASCII码中41代表大写字母A
console.log(hexChar); // 输出:A
let unicodeChar = "\u0041"; // Unicode中0041代表大写字母A
console.log(unicodeChar); // 输出:A
在字符串中使用转义字符可以方便地表示那些不能直接包含在字符串中的字符。
|
|