如何在 Ruby 1.8.7 中获取字符的 Unicode?
为了在 Ruby 1.9.2 中获取字符的 Unicode,我使用 ord
:
"я".ord # => 1103 (It's a Russian letter)
Howcan I get the Unicode in Ruby 1.8.7 ?
To get character's Unicode in Ruby 1.9.2, I use ord
:
"я".ord # => 1103 (It's a Russian letter)
How could I get the Unicode in Ruby 1.8.7 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用我的
backports
gem。使用 Ruby 1.8.7 运行(以及用于为 utf-8 设置$KCODE
的选项-KU
):You could use my
backports
gem. Running with Ruby 1.8.7 (and option-KU
to setup$KCODE
for utf-8):好吧,我找到了这个很好的解决方案:
Well, I found this nice solution: