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


R語言 dQuote()用法及代碼示例


R 語言中的 dQuote() 函數用於將給定的字符串或字符向量轉換為雙引號文本。

用法: dQuote(x)

參數:
x:指定字符串,字符向量

範例1:


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

輸出:

[1] "“GeeksforGeeks Geeks”"

範例2:


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

輸出:

[1] "“2020-05-29 19:18:05”"

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Convert String to Double Quote Text in R Programming – dQuote() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。