此頁面由社群從英文翻譯而來。了解更多並加入 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月.
trim() 方法會移除字串起始及結尾處的空白字元。本文中的空白字元指所有空格字元(如:空格、欄標、無間斷空格等等)及換行字元(如:換行、回車等等)。
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 的複製)。
如果只是想要去除字串起始處或結尾處其中之一的空白字元,那麼可以選擇使用trimStart() 或者trimEnd()。
Polyfill
在任何其他的程式碼被執行之前,先執行以下的程式碼,它將會在瀏覽器本身未支援trim() 的方法時創造它。
js
if (!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ""); };}範例
>如何使用trim()
以下例子會印出小寫的字串'foo':
js
var orig = " foo ";console.log(orig.trim()); // 'foo'規範
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-string.prototype.trim> |