IntToHexString(int)

10進数の整数を16進表記の文字列に変換する

string IntToHexString(
    int nInteger
);

Parameters

nInteger

16進数に変換したい10進数の整数値.


Description

10進数の整数を16進表記の文字列に変換する。10進数123をIntToHexStringで変換すると、結果は"0x0000007b"になる。



Remarks

もしあなたの初めて学んだ記数法が16進数で使いこなせるなら、とても楽なことでしょう。

私たち一般の人間は10進法に縛り付けられているからです。


Version

1.30

Example

int foo = 300;
string bar =  IntToHexString(foo); 
// 結果 "0x0000012c"

See Also

functions: IntToFloat | IntToString
categories: Math Functions | Type Casting/Conversion Functions


author: Charles Feduke, editor: Lilac Soul, additional contributor(s): Lilac Soul, JP team: geshi, ngtaicho
Send comments on this topic.