需要帮助尝试将数字转换为字符代码
我使用的是irb/ruby1.9.1/windows7。
我需要将字母“M”转换为字符代码。 我编写了下面的代码:
>M
我期望结果为 77
。 但结果是“M”
。
如何将字母变成字符代码?
I am using irb/ruby1.9.1/windows7.
I need to convert the letter "M" into character code.
I wrote the code below:
>M
I expected the result to be 77
.
But the result was "M"
.
How can I make the letter into character code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不使用
ord
Why not use
ord
尝试方法 ord
来获取字符代码。
Try method ord
in order to get the character code.