html_encoding_guess()
帮助您处理声明错误编码的网页。使用 html_encoding_guess()
生成可能的编码列表,然后使用 read_html()
的 encoding
参数尝试每种编码。 html_encoding_guess()
替换已弃用的 guess_encoding()
。
例子
# A file with bad encoding included in the package
path <- system.file("html-ex", "bad-encoding.html", package = "rvest")
x <- read_html(path)
x %>% html_elements("p") %>% html_text()
#> [1] "\xc9migré cause célèbre déjà vu."
html_encoding_guess(x)
#> encoding language confidence
#> 1 ISO-8859-1 fr 0.31
#> 2 ISO-8859-2 ro 0.22
#> 3 UTF-16BE 0.10
#> 4 UTF-16LE 0.10
#> 5 GB18030 zh 0.10
#> 6 Big5 zh 0.10
#> 7 ISO-8859-9 tr 0.06
#> 8 IBM424_rtl he 0.01
#> 9 IBM424_ltr he 0.01
# Two valid encodings, only one of which is correct
read_html(path, encoding = "ISO-8859-1") %>% html_elements("p") %>% html_text()
#> [1] "Émigré cause célèbre déjà vu."
read_html(path, encoding = "ISO-8859-2") %>% html_elements("p") %>% html_text()
#> [1] "Émigré cause célčbre déjŕ vu."
相关用法
- R rvest html_element 从 HTML 文档中选择元素
- R rvest html_text 获取元素文本
- R rvest html_form 解析表单并设置值
- R rvest html_children 获取元素子元素
- R rvest html_name 获取元素名称
- R rvest html_table 将 html 表解析为 DataFrame
- R rvest html_attr 获取元素属性
- R rvest session 在网络浏览器中模拟会话
- R rvest minimal_html 从内联 HTML 创建 HTML 文档
- R predict.rpart 根据拟合的 Rpart 对象进行预测
- R SparkR randomSplit用法及代码示例
- R reprex un-reprex 取消渲染reprex
- R SparkR read.stream用法及代码示例
- R SparkR rbind用法及代码示例
- R readr datasource 创建源对象。
- R readr melt_delim 返回分隔文件中每个标记的熔化数据(包括 csv 和 tsv)
- R readr read_rds 读/写 RDS 文件。
- R readr read_lines 从文件中读取/写入行
- R SparkR rollup用法及代码示例
- R readr parse_number 灵活地解析数字
- R snip.rpart 剪切 Rpart 对象的子树
- R labels.rpart 为 Rpart 对象创建分割标签
- R SparkR refreshByPath用法及代码示例
- R summary.rpart 总结拟合的 Rpart 对象
- R printcp 显示拟合 Rpart 对象的 CP 表
注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Guess faulty character encoding。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。