有没有一种简单的方法可以将 .md (markdown) 文件作为字符向量读入 R

Is there an easy way to read a .md (markdown) file as a character vector into R

我有一个从网上获取的原始降价文件,我想将文本作为字符向量读入 R。有什么好的方法吗?

谢谢。

您可以使用 readLines 逐行阅读(大多数)文件,这也适用于 markdown。看看 documentation.

您使用 con 参数指定要读取的文件,例如

readLines(con = "markdown.md")