endsWith()
String.endsWith()は文字列な引数で指定した文字列で終ったかどうかを判定するメソッドです。
文字列が引数に指定した文字列で終わっている場合はtrueを、終わっていない場合はfalseを返します。
"123456".endsWith("1");//false
"123456".endsWith("6");//true
"123456".endsWith("56");//true
第2引数には文字列の終了位置を指定することができます。
""123456".endsWith("6",3);//false
"123456".endsWith("3",3);//true
String.endsWith()はES2015で策定されており、Firefoxなどのブラウザで先行実装がされています。
登録日 : 2013年07月25日 最終更新日 : 2017年1月27日
同じカテゴリー(String)のエントリー
- valueOf()
- toUpperCase()
- toString()
- toLowerCase()
- toLocaleUpperCase()
- toLocaleLowerCase()
- substring()
- substr()
- split()
- slice()
- search()
- replace()
- match()
- contains()
- endsWith()
- startsWith()
- localeCompare()
- lastIndexOf()
- indexOf()
- fromCharCode()
- concat()
- charCodeAt()
- charAt()
- trimLeft()
- trimRight()
- trim()
- length