stringObject.charCodeAt( index )メソッド

stringObject.charCodeAt( index )メソッドは、Stringオブジェクトの文字列から、引数「index」に指定したインデックスの位置の文字を取得し、その文字のUnicodeを返すメソッド。

構文

stringObject.charCodeAt( index )

引数

index
取得したい位置をインデックスで指定する。

戻り値

Stringオブジェクトの文字列の指定インデックスの位置の文字のUnicode。

サンプル

<script type="text/javascript">
var $sampleString = new String( 'alphasis' );
for( $counter = 0; $counter < $sampleString.length; $counter++ ) {
    document.write( $sampleString.charAt( $counter ) + ': ' );
    document.write( $sampleString.charCodeAt( $counter ) + '<br />' );
}
</script>

↓↓↓出力結果↓↓↓

スポンサード リンク

カテゴリー: JavaScript, Stringオブジェクト, Unicode, メソッド, リファレンス, 取得, 組み込みオブジェクト タグ: パーマリンク