Convert String to Double Quote Text in R Programming - dQuote() Function Last Updated : 01 Jun, 2020 Comments Improve Suggest changes Like Article Like Report dQuote() function in R Language is used to convert the given string or character vector into double quote text. Syntax: dQuote(x) Parameters: x: specified string, character vector Example 1: Python3 # R program to illustrate # dQuote function # Initializing a string x <- "GeeksforGeeks" # Calling the dQuote() function dQuote(x) Output : [1] "“GeeksforGeeks Geeks”" Example 2: Python3 # R program to illustrate # dQuote function # Initializing a string x <- "2020-05-29 19:18:05" # Calling the dQuote() function dQuote(x) Output: [1] "“2020-05-29 19:18:05”" Comment More infoAdvertise with us Next Article Convert String to Double Quote Text in R Programming - dQuote() Function K Kanchan_Ray Follow Improve Article Tags : R Language R-strings R String-Functions Similar Reads Convert String to Single Quote Text in R Programming - sQuote() Function sQuote() function in R Language is used to convert the given string or character vector into single quote text. Syntax: sQuote(x) Parameters: x: specified string, character vector Example 1: Python3 # R program to illustrate # sQuote function # Initializing a string x <- "GeeksforGeeks" 1 min read Convert an Expression to a String in R Programming - deparse() Function deparse() function in R Language is used to convert an object of expression class to an object of character class. Syntax: deparse(expr) Parameters: expr: Object of expression class Example 1: Python3 1== # R program to convert # expression to character # Creating an object of expression class x 1 min read Convert a String to an Expression in R Programming - parse() Function parse() function in R Language is used to convert an object of character class to an object of expression class. Syntax: parse(text = character) Parameters: character: Object of character class Example 1: Python3 1== # R program to convert # character to expression # Creating an object of character 1 min read Convert an Object to a String in R Programming - toString() Function toString() function in R Language is used to convert an object into a single character string. Syntax: toString(x, width) Parameters: x: Object width: maximum string width Example 1: Python3 1== # R program to convert an object to string # Creating a vector x <- c("Geeks", "for 1 min read Convert Degree value to Radian value in R Programming - deg2rad() Function deg2rad() function in R Language is used to convert the specified degree value to radian value. Note: This function requires 'grid' package to be installed. Syntax: deg2rad(x) Parameter: x: degree value to be converted Example 1: Python3 1== # R code to convert degree value # to radian value # Loadi 1 min read Like