使用keyword_search检测pdf时文件名太长?
我正在尝试通过搜索某些关键字来对pdf进行一些文本挖掘。
这是我的代码:
library(pdftools)
library(tidyverse)
library(pdfsearch)
UC_text <- pdf_text("https://wilmar-iframe.todayir.com/attachment/20190411162436345449392_en.pdf")
result <- keyword_search(UC_text,
k...