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’"
相關用法
- R語言 dQuote()用法及代碼示例
- R語言 bquote()用法及代碼示例
- R語言 integrate()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Convert String to Single Quote Text in R Programming – sQuote() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。