Esta tradução está incompleta. Ajude atraduzir este artigo.
O método
trim()
remove os espaços em brancos do início e fim de um texto. É considerado espaço em branco (espaço, tabulação, espaço fixo/rígido, etc.) e todo sinal de fim de linha (LF, CR, etc.).Sintaxe
str.trim()
Descrição
O método trim()
retorna o texto sem os espaços em branco no início e fim do texto. O trim()
não afeta o valor do texto em si.
Exemplos
Uso trim()
The following example displays the lowercase string 'foo'
:
var orig = ' foo '; console.log(orig.trim()); // 'foo' // Another example of .trim() removing whitespace from just one side. var orig = 'foo '; console.log(orig.trim()); // 'foo'
Polyfill
Running the following code before any other code will create trim()
if it's not natively available.
if (!String.prototype.trim) { String.prototype.trim = function () { return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, ''); }; }
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 5.1 (ECMA-262) The definition of 'String.prototype.trim' in that specification. |
Standard | Initial definition. Implemented in JavaScript 1.8.1. |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'String.prototype.trim' in that specification. |
Standard |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 3.5 (1.9.1) | 9 | 10.5 | 5 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |