
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Concatenate Strings in R
Concatenation can be done by using paste function in R.
Example
> paste("I", "Love", "R", sep=" ") [1] "I Love R"
If we want to specify characters between words then it can be done by using collapse argument as follows −
> x <- c("I", "Love", "R") > x [1] "I" "Love" "R" > paste(x, collapse="-") [1] "I-Love-R"
Advertisements