R 语言中的 dQuote() 函数用于将给定的字符串或字符向量转换为双引号文本。
用法: dQuote(x)
参数:
x:指定字符串,字符向量
范例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”"
相关用法
- R语言 sQuote()用法及代码示例
- R语言 bquote()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 as.Date()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 parse()用法及代码示例
- R语言 deparse()用法及代码示例
- R语言 read.table()用法及代码示例
- R语言 tolower()用法及代码示例
- R语言 charToRaw()用法及代码示例
- R语言 deg2rad()用法及代码示例
- R语言 rad2deg()用法及代码示例
- R语言 str_to_title()用法及代码示例
- R语言 as.factor()用法及代码示例
- R语言 as.ordered()用法及代码示例
- R语言 as.list()用法及代码示例
- R语言 data.matrix()用法及代码示例
- R语言 utf8ToInt()用法及代码示例
- R语言 intToUtf8()用法及代码示例
- R语言 intToBits()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Convert String to Double Quote Text in R Programming – dQuote() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。