*用引号括起来的一个或多个字符的序列称为字符串。
*引号可以是单引号 '' 或双引号 " " 或反引号 ``.
并且,字符序列可以是字母、数字、符号等
*charAt() 返回字符串中指定索引处的字符。
*字符串的第一个字符的索引为 0,第二个字符的索引为 1,依此类推...
let text = "HELLO";
让 char = text.charAt(0);
console.log(char)// 返回“H”
*此属性返回字符串中的字符数。
let text = "HELLO";
让长度=文本.长度;
console.log(length) // 返回 5
*提取字符串的一部分并将其作为新字符串返回。起始索引包含在内,结束索引不包含。
let text = "HELLO WORLD";
让部分 = text.slice(0, 5);
console.log(part) // 返回“HELLO”
*与 slice() 类似,但将负索引视为 0。它提取两个指定索引之间的字符。
let text = "HELLO WORLD";
让部分 = text.substring(0, 5);
console.log(part)// 返回“HELLO”
*将字符串中的所有字符转换为大写。
let text = "你好";
让 upper = text.toUpperCase();
console.log(upper)// 返回“HELLO”
*将字符串中的所有字符转换为小写。
let text = "HELLO";
让 lower = text.toLowerCase();
console.log(lower)// 返回“hello”
*删除字符串两端的空格。
let text = "你好";
让修剪 = text.trim();
console.log(trimmed) // 返回“hello”
*连接两个或多个字符串并返回一个新字符串。
let text1 = "你好";
让text2 =“世界”;
让组合 = text1.concat(" ", text2);
console.log(combined) // 返回“Hello World”
*返回指定子字符串第一次出现的索引。如果没有找到则返回-1。
let text = "HELLO WORLD";
让索引 = text.indexOf("O");
console.log(index)//返回4
*用新值替换第一次出现的指定值。
let text = "HELLO WORLD";
let newText = text.replace("WORLD", "EVERYONE");
console.log(newText)// 返回“HELLO EVERYONE”
*用新值替换所有出现的指定值。
let text = "HELLO WORLD WORLD";
let newText = text.replaceAll("WORLD", "EVERYONE");
console.log(newText)// 返回“HELLO EVERYONE EVERYONE”
*根据指定的分隔符将字符串拆分为子字符串数组。
let text = "HELLO WORLD";
让 parts = text.split(" ");
console.log(parts)// 返回 ["HELLO", "WORLD"]
*使用指定的分隔符将数组的元素连接到字符串中。
let array = ["HELLO", "WORLD"];
let join = array.join(" ");
console.log(joined)// 返回“HELLO WORLD”
*检查字符串是否以指定字符串开头。
let text = "HELLO WORLD";
让starts = text.startsWith("HELLO");
console.log(starts)//返回true
*检查字符串是否以指定字符串结尾。
let text = "HELLO WORLD";
让结束 = text.endsWith("WORLD");
console.log(ends)//返回true
*检查字符串是否包含指定的子字符串。
let text = "HELLO WORLD";
让includes = text.includes(“LO”);
console.log(includes)//返回true
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3