代码之家  ›  专栏  ›  技术社区  ›  nonopolarity

有没有PHP或Ruby库可以将繁体中文转换为简体中文,或者将繁体中文转换为简体中文?

  •  0
  • nonopolarity  · 技术社区  · 15 年前

    有没有PHP或Ruby库可以将繁体中文转换为简体中文,或者将繁体中文转换为简体中文(big5<-->GB)?ICONV库不会这样做,因为它只转换编码,但字形保持不变。

    2 回复  |  直到 10 年前
        1
  •  1
  •   Community Michael Schmitz    7 年前

    使用1.9可能会获得一些优势

    encoding.constants.grep/gb/i =>[:GB18030,:GBK,:GB1984,:GB12345]

    encoding.constants.grep/big5/i =>[:big5,:big5,:big5-hkss,:big5-hkss,:big5-uao,:big5-uao]

    所以有点像

    How can I convert a string from windows-1252 to utf-8 in Ruby?

    original=file.open('name','r:original_encoding').read

    original.force_encoding('new_encoding')

    尽管我从未尝试过。

        2
  •  2
  •   MicTech    15 年前
    推荐文章