0Pricing
R Academy · Lesson

String Manipulation

Extract, replace, and split text data using R’s string functions for efficient text processing.

1

Introduction to String Manipulation in R

String manipulation is essential for working with text data. In this lesson, you'll learn how to process and modify strings in R.

String Manipulation — illustration 1

2

Creating Strings

You can create strings using quotes.

text <- 'Hello, R!'
print(text)

All lessons in this course

  1. String Manipulation
  2. Regular Expressions
  3. Dates and Times in R
← Back to R Academy