我想使用R作为字符串生成以下结果:
"hello"."myfriend"
在尝试与paste
无限组合后,我尽可能接近:
>'hello"."myfriend'
使用cat
hi <- "'hello\".\"myfriend'"
cat(hi)
理想情况下,我想将包含引号"hello"."myfriend"
的字符串传递给变量,以便将其作为参数传递给其他地方:
hi <- "'hello\".\"myfriend'"
par <–cat(hi)
par
> "hello"."myfriend"