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:




# R program to convert an object to string
  
# Creating a vector
x <- c("Beginner", "for", "Beginner"
  
# Calling toString() Function
toString(x)
toString(x, width = 12)


Output:

[1] "Beginner, for, Beginner"
[1] "Beginner, f...."

Example 2:




# R program to convert an object to string
  
# Creating a matrix
x <- matrix(c(1:9), 3, 3)
  
# Calling toString() Function
toString(x)


Output:

[1] "1, 2, 3, 4, 5, 6, 7, 8, 9"

Contact Us