在 JavaScript 中实现 String.prototype.trim() 方法的 polyfill


某些旧版本的浏览器或旧浏览器本身不支持 JavaScript 的新功能。例如,如果您使用的是非常旧的浏览器版本,它可能不支持 ES10 版本 JavaScript 的功能。例如,某些版本的浏览器不支持 ES10 版本 JavaScript 中引入的 Array.falt() 方法来展平数组。

在这种情况下,我们需要实现用户定义的方法,以便旧版浏览器支持这些功能。在这里,我们将为 String 对象的 trim() 方法实现 polyfill。

语法

用户可以按照以下语法使用正则表达式为 string.prototype.trim() 方法实现 polyfill。

String.prototype.trim = function (string) {
   return str.replace(/^\s+|\s+$/g, "");
}

在上面的语法中,我们使用了正则表达式来替换字符串开头和结尾的空格。

正则表达式解释

  • ^ − 表示字符串的开头。

  • \s+ − 表示一个或多个空格。

  • | − 表示“或”运算符。

  • \s+$ − 表示字符串末尾的空格。

  • g − 表示删除所有匹配项。

示例(使用内置的 string.trim() 方法)

在下面的示例中,我们使用了 String 对象的内置 trim() 方法来删除字符串开头和结尾的空格。

<html>
<body>
   <h2>Using the trim() method without polyfill in JavaScript</h2> 
   <div id = "content"> </div>
   <script>
      let content = document.getElementById('content');
      let str = " This is string with white spaces! ";
      content.innerHTML += "The original string is :-" + str + ".<br>";
      let trimmed = str.trim();
      content.innerHTML += "The trimmed string using trim() method is :-" + str + ".<br>";
   </script>
</body>
</html>

示例(为 string.trim() 方法实现了 polyfill)

在下面的示例中,我们实现了 polyfill 来使用正则表达式修剪字符串。我们编写了正则表达式,将开头和结尾的空格替换为空字符串。

<html>
<body>
   <h2>Using the <i> trim() method with polyfill </i> in JavaScript</h2>
   <div id = "content"> </div>
   <script>
      let content = document.getElementById('content');
      String.prototype.trim = function (string) {
         let regex = /^\s+|\s+$/g;
         return str.replace(regex, "");
      }
      let str = "Hi, How are you? ";
      content.innerHTML += "The original string is :-" + str + ".<br>";
      let trimmed = str.trim();
      content.innerHTML += "The trimmed string using trim() method is :-" + str + "<br>";
   </script>
</body>
</html>

示例

在下面的示例中,我们使用了 for 循环来查找字符串第一个和最后一个有效字符的索引。我们创建了一个包含不同字符的数组,这些字符表示空格。之后,第一个 for 循环遍历字符串的字符,检查第一个不在“spaces”数组中的字符,并将该索引存储在 start 变量中。此外,它以相同的方式从最后找到第一个有效字符。

最后,我们使用了 slice() 方法来获取从“start”开始到“end”位置结束的子字符串。

<html>
<body>
   <h2>Using the <i> trim() method with polyfill </i> in JavaScript</h2>
   <div id = "content"> </div>
   <script>
      let content = document.getElementById('content');
      String.prototype.trim = function () {
         const spaces = ["\s", "\t", "
", " ", "", "\u3000"]; let start = 0; let end = this.length - 1; // get the first index of the valid character from the start for (let m = 0; m < this.length; m++) { if (!spaces.includes(this[m])) { start = m; break; } } // get the first index of valid characters from the last for (let n = this.length - 1; n > -1; n--) { if (!spaces.includes(this[n])) { end = n; break; } } // slice the string return this.slice(start, end + 1); } let str = " Hi, How are you? "; content.innerHTML += "The original string is :-" + str + ".<br>"; let trimmed = str.trim(); content.innerHTML += "The trimmed string using trim() method is :-" + str + "<br>"; </script> </body> </html>

在本教程中,用户学习了如何为 string.trim() 方法实现 polyfill。我们已经看到了两种为 trim() 方法实现 polyfill 的方法。第一种方法使用正则表达式和 replace() 方法。第二种方法是朴素方法,使用 for 循环、slice() 和 includes() 方法。

更新于: 2023年2月28日

277 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告