1.字符串填充2. 字符串反转3.第一个字母大写3.检查字符串的开头或结尾是否有特定序列8. 字符串替换

发布时间:2024年01月07日
  1. 字符串填充

有时,我们可能需要确保字符串达到特定长度。这时候就可以使用padStart和padEnd方法了。这两个方法用于在字符串的开头和结尾填充指定的字符,直到字符串达到指定的长度。

// Use the padStart method to pad "0" characters at the beginning of the string until the length is 8
const binary = '101'.padStart(8, '0');
console.log(binary); // "00000101"

// Use the padEnd method to pad "*" characters at the end of the string until the length is 10
const str = "Hello".padEnd(11, " *");
console.log(str); // "Hello * * *"
  1. 字符串反转

反转字符串中的字符是一种常见的需求,可以使用展开运算符…、反转方法和连接方法来实现此目标。

// Reverse the characters in the string, using the spread operator, reverse method and join method
const str = "developer";
const reversedStr = [...str].reverse().join("");
console.log(reversedStr); // "repoleved"

3.第一个字母大写

要使字符串的第一个字母大写,可以使用多种方法,例如 toUpperCase 和 slice 方法,或者使用字符数组。

// To capitalize the first letter, use toUpperCase and slice methods
let city = 'paris';
city = city[0].toUpperCase() + city.slice(1);
console.log(city); // "Paris"

4.字符串数组分割

如果需要将字符串拆分为字符数组,可以使用扩展运算符 …

// Split the string into a character array using the spread operator
const str = ‘JavaScript’;
const characters = […str];
console.log(characters); // [“J”, “a”, “v”, “a”, “S”, “c”, “r”, “i”, “p”, “t”]
5. 使用多个分隔符分割字符串

除了常规字符串拆分之外,您还可以使用正则表达式按多个不同的分隔符拆分字符串。

// Split string on multiple delimiters using regular expressions and split method
const str = "java,css;javascript";
const data = str.split(/[,;]/);
console.log(data); // ["java", "css", "javascript"]
  1. 检查字符串是否包含

您可以使用 include 方法来检查字符串中是否包含特定序列,而无需使用正则表达式。

// Use the includes method to check if a string contains a specific sequence
const str = “javascript is fun”;
console.log(str.includes(“javascript”)); // true
7. 检查字符串的开头或结尾是否有特定序列

如果需要检查字符串是否以特定序列开始或结束,可以使用startsWith 和endsWith 方法。

// Use startsWith and endsWith methods to check if a string starts or ends with a specific sequence
const str = "Hello, world!";
console.log(str.startsWith("Hello")); // true
console.log(str.endsWith("world")); // false
  1. 字符串替换

要替换字符串中所有出现的特定子字符串,您可以使用正则表达式方法与全局标志的替换,或使用新的replaceAll方法(注意:并非所有浏览器和Node.js版本都支持)。

// Use the replace method combined with a regular expression with global flags to replace all occurrences of a string.
const str = "I love JavaScript, JavaScript is amazing!";
console.log(str.replace(/JavaScript/g, "Node.js")); // "I love Node.js, Node.js is 
文章来源:https://blog.csdn.net/weixin_45016173/article/details/135422616
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。