charAt()
String.charAt()は文字列から指定した番号の文字列を取得するメソッドです。
"あいうえお".charAt(1);//"い"
このメソッドは指定した番号の文字列が存在しない場合は空の文字列を返します。
"あいうえお".charAt(5);""
登録日 : 2013年07月03日 最終更新日 : 2013年7月3日
同じカテゴリー(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