9
A
回答
16
require 'iconv'
i = Iconv.new('UTF-8','LATIN1')
a_with_hat = i.iconv("\xc2")
4
看你的標籤,我想你想是這樣的:
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
來獲取字符集而不是。
相關問題
- 1. Python將latin1轉換爲UTF8
- 2. 將latin1轉換爲UTF8
- 3. 如何在C/C++中將字符串從UTF8轉換爲Latin1?
- 4. SOLR + Mysql:如何將utf8轉換爲latin1
- 5. 如何將mysql latin1轉換爲utf8
- 6. 將latin1轉換爲utf8的問題
- 7. MySQL將latin1數據轉換爲UTF8
- 8. MySQL將表格從Latin1轉換爲utf8
- 9. 將字節[]轉換爲UTF8字符串
- 10. 將字符串轉換爲utf8字節
- 11. 如何將字符串轉換爲UTF8?
- 12. 將unicode字符串轉換爲utf8
- 13. 將字符串轉換爲UTF8與perl
- 14. 將字符串轉換爲UTF8
- 15. 將utf8代碼點字符串轉換爲utf8 <U+0161>轉換爲utf8
- 16. 轉換LATIN1到UTF8在C#
- 17. LATIN1到UTF8轉換問題
- 18. 將Latin1的SQL轉換列轉換爲UTF8
- 19. 如何將utf8字符串轉換爲ascii字符串?
- 20. 在PHP中將utf8轉換爲latin1。 255以上的所有字符轉換爲字符引用
- 21. 轉換爲UTF8格式的字符串
- 22. Unicode轉換爲UTF8字符串
- 23. 轉換JSON字符串UTF8爲NSDictionary Swift
- 24. C#將字符串從UTF-8轉換爲ISO-8859-1(Latin1)H
- 25. 將utf8mb4字符轉換爲utf8在php
- 26. 將字節轉換爲UTF8編碼的字符串安全嗎?
- 27. 如何將UTF8字符串轉換爲字節數組?
- 28. 如何將cp1251字節數組轉換爲utf8字符串?
- 29. 將ISO8859字符串轉換爲UTF8? ÄÜÜ=>Ã爲什麼?
- 30. 如何將帶有序列化值的latin1錶轉換爲utf8?