在 Ruby 中使用 Iconv 进行音译
当我尝试使用
Iconv.iconv('ascii//ignore//translit', 'utf-8', string).to_s
(参见 questions/1726404/transliteration-in-ruby< /a>)
我得到了除了那些必须音译的符号之外的所有内容。
例如:“r-строка”→“r-”和“Gévry”→“Gvry”。
怎么了?
Ruby 1.8.7 / Rails 2.3.5 / WSeven
When I'm trying to transliterate a Cyrillic utf-8 string with
Iconv.iconv('ascii//ignore//translit', 'utf-8', string).to_s
(see questions/1726404/transliteration-in-ruby)
I'm getting everything but those symbols that have to be transliterated.
For example: 'r-строка' → 'r-' and 'Gévry' → 'Gvry'.
What's wrong?
Ruby 1.8.7 / Rails 2.3.5 / WSeven
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于西里尔语, translit gem 可能有效。
For Cyrillic the translit gem might work.
看来解决方案太棘手了为我。使用 stringex gem 解决了问题。
It seems the solution is too tricky for me. Problem solved using stringex gem.
另一种方法是通过 String 的 tr 和 gsub 方法创建自定义 translit,而不使用 iconv。
Another way is to create custom translit by tr and gsub methods of String without using iconv.