在 R 编程中将字符串转换为单引号文本 – sQuote()函数
R 语言中的sQuote()
函数用于将给定的字符串或字符向量转换为单引号文本。
Syntax: sQuote(x)
Parameters:
x: specified string, character vector
示例 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’"