紫影基地

 找回密码
 立即注册
查看: 181|回复: 0

[JavaScript] JavaScript转义字符 反斜杠

[复制链接]
阅读字号:

2002

主题

2117

帖子

21万

积分

超级版主

Rank: 8Rank: 8

积分
210303
发表于 2024-4-20 12:57:28 | 显示全部楼层 |阅读模式


在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
在字符串中使用转义字符可以方便地表示那些不能直接包含在字符串中的字符。

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|紫影基地

GMT+8, 2025-1-12 12:09 , Processed in 0.080681 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表