16進数または8進数表記の文字列を取得する

サンプルソース

' 16進数で取得
Cells(1,1) = Hex(1)
' 結果:1
Cells(1,1) = Hex(15)
' 結果:F

' 8進数で取得
Cells(1,1) = Oct(1)
' 結果:1
Cells(1,1) = Oct(15)
' 結果:17

解説

Hex()は16進数表記、Oct()は8進数表記の文字列を返します。





文字操作




Excel VBA講座




アクセスランキング


文字操作
関連する内容
データ型操作
日付操作
配列操作
ファイル操作
データベース操作
ディクショナリ操作


Copyright (C) Excel@Workshop All rights reserved.