主页

ruby 把字符串转换为16进制数

2024-07-31 10:51AM

使用to_i(16)方法:

a = "0x12AB"
b = a.to_i(16)
puts b # Output: 4779

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论