使用 JavaScript 计算字符串中的空格

计算字符串中的空格

Count the Spaces in a String using JavaScript

要计算字符串中的空格:

  1. 使用该split()方法在每个空格上拆分字符串。
  2. 访问length数组上的属性并减去 1。
  3. 结果将是字符串中的空格数。
索引.js
const str = 'one two three'; const spaces1 = str.split(' ').length - 1; console.log(spaces1); // 👉️ 2

我们传递给
String.split
方法的唯一参数是分隔符。

该方法返回一个子字符串数组。

索引.js
const str = 'one two three'; // 👇️ ['one', 'two', 'three'] console.log(str.split(' '));
我们必须1从数组的长度中减去字符串中的空格数,因为空格是子字符串数组的分隔符。

另一种方法是使用
String.replaceAll
方法。

要计算字符串中的空格数:

  1. 使用该length属性获取字符串的长度。
  2. 使用该String.replaceAll()方法从字符串中删除所有空格。
  3. 从原始字符串的长度中减去第二个字符串的长度。
索引.js
const str = 'one two three'; const spaces2 = str.length - str.replaceAll(' ', '').length; console.log(spaces2); // 👉️ 2

我们将以下 2 个参数传递给该replaceAll方法:

  1. 我们要替换的子串
  2. 每场比赛的替补

最后一步是从包含空格的字符串中减去不包含任何空格的字符串的长度。

请注意,该String.replaceAll方法不会更改原始字符串。字符串在 JavaScript 中是不可变的。

您选择哪种方法是个人喜好的问题。我会继续使用,
replaceAll()因为我发现它更直观。