# README
サンプルリスト
このディレクトリには以下のサンプルがあります。
file | example name | note |
---|---|---|
hex_to_dec.go | strconvs_hex_to_dec | 16進数文字列を10進数に変換するサンプルです. |
bin_to_dec.go | strconvs_bin_to_dec | 2進数文字列を10進数に変換するサンプルです. |
dec_to_dec.go | strconvs_dec_to_dec | 10進数文字列を10進数に変換するサンプルです. |
hex_to_bin.go | strconvs_hex_to_bin | 16進数文字列を2進数文字列に変換するサンプルです. |
bin_to_hex.go | strconvs_bin_to_hex | 2進数文字列を16進数文字列に変換するサンプルです. |
parseint_tips_bitsize.go | strconvs_parseint_tips_bitsize | strconv.ParseInt() の第3引数 bitSize を指定する際のTipsです。 |
parseint_tips_basevalue.go | strconvs_parseint_tips_base | strconv.ParseInt() の第2引数 base を指定する際のTipsです。 |