在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
- 它告诉我们删除所有匹配项。
示例(使用内置的字符串.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>
在本教程中,用户学习了如何实现字符串的trim()方法的polyfill。我们看到了两种实现trim()方法的 polyfill 的方法。第一种方法使用正则表达式和 replace() 方法。第二种方法是使用 for 循环、slice() 方法和 includes() 方法的朴素方法。