1

我从 api 获取这个值,它以某种方式在值中发送了一些特殊的 unicode 字符。我想将其转换为普通的 ascii 字符串。

4

1 回答 1

6

使用unidecoder宝石:

require 'unidecoder'
"Haryāna".to_ascii # => "Haryana"
于 2013-03-20T13:12:03.203 回答