📌  相关文章
📜  在 R 编程中将字符串转换为单引号文本 – sQuote()函数

📅  最后修改于: 2022-05-13 01:54:25.154000             🧑  作者: Mango

在 R 编程中将字符串转换为单引号文本 – sQuote()函数

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

示例 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’"