将latin1字符串转换为utf8?

发布于 2024-08-07 20:41:02 字数 88 浏览 4 评论 0原文

如何将包含 latin1 字符的字符串转换为 utf8?

该字符串是一个文档,由 open-uri 打开并包含这些特殊字符。

此致

how can I convert a string, that contains latin1 characters to utf8?

The string is a document, that is opened by open-uri and that contains these special characters.

Best regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

玉环 2024-08-14 20:41:02

Iconv

require 'iconv'
i = Iconv.new('UTF-8','LATIN1')
a_with_hat = i.iconv("\xc2")

Iconv

require 'iconv'
i = Iconv.new('UTF-8','LATIN1')
a_with_hat = i.iconv("\xc2")
看透却不说透 2024-08-14 20:41:02

从你的标签来看,我猜你想要这样的东西:

require 'rubygems'
require 'open-uri'
require 'nokogiri'
require 'iconv'

file = open(your_uri)
doc = Nokogiri::HTML(Iconv.conv('utf-8', 'latin1', file.readlines.join("\n")))
doc.xpath(your_xpath)

如果你不确定 uri 使用什么字符集,你可以使用 file.charset 来获取字符集而不是 'latin'

Judging by your tags, I guess you want something like this:

require 'rubygems'
require 'open-uri'
require 'nokogiri'
require 'iconv'

file = open(your_uri)
doc = Nokogiri::HTML(Iconv.conv('utf-8', 'latin1', file.readlines.join("\n")))
doc.xpath(your_xpath)

If you're not sure what charset the uri uses, you can use file.charset to get the charset instead of 'latin'.

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