如何在 Ruby 1.8.7 中获取字符的 Unicode?

发布于 2024-11-06 12:15:42 字数 206 浏览 0 评论 0原文

为了在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-11-13 12:15:42

您可以使用我的 backports gem。使用 Ruby 1.8.7 运行(以及用于为 utf-8 设置 $KCODE 的选项 -KU):

require "rubygems"
require "backports/1.8.7/string/ord"
"я".ord # => 1103

You could use my backports gem. Running with Ruby 1.8.7 (and option -KU to setup $KCODE for utf-8):

require "rubygems"
require "backports/1.8.7/string/ord"
"я".ord # => 1103
謌踐踏愛綪 2024-11-13 12:15:42

好吧,我找到了这个很好的解决方案:

"я".unpack('U')[0]     # => 1103

Well, I found this nice solution:

"я".unpack('U')[0]     # => 1103
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文