当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 sQuote()用法及代码示例


R 语言中的 sQuote() 函数用于将给定的字符串或字符向量转换为单引号文本。

用法: sQuote(x)

参数:
x:指定字符串,字符向量

范例1:


# R program to illustrate
# sQuote function
  
# Initializing a string
x <- "GeeksforGeeks"
  
# Calling the sQuote() function
sQuote(x)

输出:

[1] "‘GeeksforGeeks’"

范例2:


# R program to illustrate
# sQuote function
  
# Initializing a string
x <- "2020-05-29 19:18:05"
  
# Calling the sQuote() function
sQuote(x)

输出:

[1] "‘2020-05-29 19:18:05’"

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Convert String to Single Quote Text in R Programming – sQuote() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。