Tag: 小写字母

Rails:如何压缩非英文string?

我怎么能在Ruby on Rails 3中使用非英文string? str = "Привет" # Russian puts str[0].ord # => 1055 str.downcase! puts str[0].ord # => 1055 (Should be 1087) 我想要它在Ruby 1.8.7以及Ruby 1.9.2中工作。