gpt4 book ai didi

r - 从包含单引号和双引号的字符创建字符串?

转载 作者:行者123 更新时间:2023-12-03 19:40:07 24 4
gpt4 key购买 nike

有没有办法从一些包含单个 ' 的文本中创建一个字符串?和双 "引用字符?
例子
假设我们有一些包含单引号和双引号的文本(假设实际用例会更长):

Here's a message: "hello, world!"
包裹在 ' , 或 "不起作用:
thing <- "Here's a message: "hello, world!""
Error: unexpected symbol in "thing <- "Here's a message: "hello"

thing <- 'Here's a message: "hello, world!"'
Error: unexpected symbol in "thing <- 'Here's"
我可以想到两种可能有效的方法。 1. 将文本转储到 RStudio(或文本编辑器)中并查找和替换。 2. 粘贴到文本文件中,然后读入 readLines() 行.我只是想看看有没有更简单的方法

最佳答案

如果你有 4.0.0 或更高版本的 R,你可以使用 r"(all of your text here)" .

text <- r"(My text "has" double and 'single' quotes)"

> cat(text)
My text "has" double and 'single' quotes
可以通过运行 help("Quotes") 找到相关文档。 .

关于r - 从包含单引号和双引号的字符创建字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66281545/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com