Regular Expressions
Leverage pattern matching and substitution with regex for complex text handling tasks.
Regular Expressions is a free R Academy lesson on CoddyKit — lesson 2 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the R Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.
1
Introduction to Regular Expressions in R
Regular expressions (regex) allow you to match and manipulate text patterns efficiently. In this lesson, you'll learn the basics of using regex in R.

2
Using grep() to Find Patterns
The grep() function searches for patterns in a vector.
text <- c('apple', 'banana', 'cherry')
grep('a', text)3
Using grepl() to Check for Patterns
The grepl() function returns TRUE or FALSE if a pattern is found.
grepl('a', text)4
Extracting Matches with regexpr()
The regexpr() function locates the first occurrence of a pattern in a string.
regexpr('an', 'banana')5
Using gsub() for Replacement
The gsub() function replaces all occurrences of a pattern in a string.
gsub('a', '@', 'banana')6
Using sub() for First Match Replacement
The sub() function replaces only the first occurrence of a pattern.
sub('a', '@', 'banana')7
Using str_extract() for Pattern Extraction
The str_extract() function from stringr extracts matched patterns.
library(stringr)
str_extract('abc123', '\d+')8
9
Using str_replace_all()
The str_replace_all() function replaces multiple matches using stringr.
library(stringr)
str_replace_all('banana', 'a', '@')10
Summary
In this lesson, you learned:
- How to find patterns using
grep()andgrepl(). - How to extract and replace patterns in text.
- How to use
stringrfor advanced regex operations.

Frequently asked questions
Is the “Regular Expressions” lesson free?
Yes — the full text of “Regular Expressions” is free to read here on the web, and the R Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the R Academy course, upgrade to CoddyKit PRO.
What will I learn in “Regular Expressions”?
Leverage pattern matching and substitution with regex for complex text handling tasks. You practise R Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start R Academy?
No prior experience is required. R Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 3, so you can start here or from the beginning and move at your own pace.
How long does the “Regular Expressions” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this R Academy lesson?
Yes. Every R Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- String Manipulation
- Regular Expressions
- Dates and Times in R