在 R 编程中将字符串转换为双引号文本 - dQuote()函数
R 语言中的dQuote()
函数用于将给定的字符串或字符向量转换为双引号文本。
Syntax: dQuote(x)
Parameters:
x: specified string, character vector
示例 1:
# R program to illustrate
# dQuote function
# Initializing a string
x <- "GeeksforGeeks"
# Calling the dQuote() function
dQuote(x)
输出 :
[1] "“GeeksforGeeks Geeks”"
示例 2:
# R program to illustrate
# dQuote function
# Initializing a string
x <- "2020-05-29 19:18:05"
# Calling the dQuote() function
dQuote(x)
输出:
[1] "“2020-05-29 19:18:05”"