此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
String.prototype.trim()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
String 的trim() 方法会从字符串的两端移除空白字符,并返回一个新的字符串,而不会修改原始字符串。
要返回一个仅从一端修剪空白字符的新字符串,请使用trimStart() 或trimEnd()。
In this article
尝试一下
const greeting = " Hello world! ";console.log(greeting);// Expected output: " Hello world! ";console.log(greeting.trim());// Expected output: "Hello world!";语法
js
trim()返回值
一个新的字符串,表示从str 的开头和结尾去除空白字符后的结果。空白字符定义为空白符加上行终止符。
如果str 的开头和结尾都没有空白字符,仍然会返回一个新的字符串(实际上是str 的副本)。
示例
>使用 trim()
下面的示例从str 的两端去除空白字符:
js
const str = " foo ";console.log(str.trim()); // 'foo'规范
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-string.prototype.trim> |