Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.trimLeft()

非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

概要

文字列の左端の空白を削除します。

構文

str.trimLeft()

説明

trimLeft メソッドは左端の空白を取り除いた文字列を返します。trimLeft は元の文字列自身の値には影響を与えません。

例: trimLeft の使用

以下の例では、メソッド使用前後の文字数を表示し、小文字の文字列 "foo  " を文書に書き込んでいます。

var str = "   foo  ";

alert(str.length); // 8

str = str.trimLeft();
alert(str.length); // 5
document.write( str );

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,