當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。