🐧String
Any value written within a pair of single quotes or double quotes in R is treated as a string.
a <- "I love R programming"
print(a)
# Output
[1] "I love R programming"
Sequence operations with strings in R

Source:
Last updated