跳至主要內容

String

Yang2025年1月10日大约 13 分钟

String


转义字符

CodeOutput
\0空字符
\'单引号
\"双引号
\\反斜杠
\n换行
\r回车
\v垂直制表符
\t水平制表符
\b退格
\f换页
\uXXXXunicode 码
\u{X} ... \u{XXXXXX}unicode codepoint
\xXXLatin-1 字符(x小写)

长字符串

代码可能含有很长的字符串,应写成多行,而不是让这一行无限延长或着被编辑器折叠

// 使用 + 运算符将多个字符串连接起来
let longString = "This is a very long string which needs " +
                 "to wrap across multiple lines because " +
                 "otherwise my code is unreadable.";

// 每行末尾使用反斜杠字符(“\”),以指示字符串将在下一行继续
// 确保反斜杠后面没有空格或任何除换行符之外的字符或缩进; 否则反斜杠将不会工作
let longString = "This is a very long string which needs \
to wrap across multiple lines because \
otherwise my code is unreadable.";

基本字符串和字符串对象

s1 = "2 + 2";               // creates a string primitive
s2 = new String("2 + 2");   // creates a String object
console.log(eval(s1));      // returns the number 4
console.log(eval(s2));      // returns the string "2 + 2"

// 利用 valueOf 方法,我们可以将字符串对象转换为其对应的基本字符串
console.log(eval(s2.valueOf())); // returns the number 4


String.prototype.charAt()


String.prototype.charCodeAt()


String.prototype.concat()


String.prototype.startsWith()


String.prototype.endsWith()


String.prototype.includes()


String.prototype.indexOf()

// 统计一个字符串中某个字母出现的次数
var str = 'To be, or not to be, that is the question.';
var count = 0;
var pos = str.indexOf('e');
while (pos !== -1) {
  count++;
  pos = str.indexOf('e', pos + 1);
}
console.log(count); // displays 4

String.prototype.lastIndexOf()


String.prototype.localeCompare()


String.prototype.match()


String.prototype.matchAll()


String.prototype.padStart()


String.prototype.padEnd()


String.prototype.repeat()


String.prototype.replace()



String.prototype.slice()


String.prototype.split()


String.prototype.substring()


String.prototype.toLowerCase()


String.prototype.toUpperCase()


String.prototype.toLocaleLowerCase()


String.prototype.toLocaleUpperCase()


String.prototype.toString()


String.prototype.trim()


String.prototype.trimStart()


String.prototype.trimEnd()


String.prototype.valueOf()