if-else to check if a character string contains a specific substring. Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 4 Likes Like Report In R Programming Language, we can use the if-else statement to check if a character string contains a specific substring. The if-else statement allows us to execute different code blocks based on a certain condition, in this case, whether the substring is present in the given string. if-else statementThe if-else statement is a control structure in R used to make decisions based on a given condition. Character stringsThe if-else statement is a control structure in R used to make decisions based on a given condition. SubstringA substring is a smaller sequence of characters that appears within a larger character string. To check if a character string contains a specific substring, follow these steps: Define the main character string.Define the substring you want to check for.Use the if-else statement to check if the substring is present in the main string.Execute different code blocks based on the presence or absence of the substring.Let's consider a few examples to illustrate how to use the if-else statement in R to check for a specific substring. Example 1: Checking if a string is present in the string R # Step 1: Define the main character string main_string <- "I have an apple and a banana." # Step 2: Define the substring to check for substring_to_check <- "apple" # Step 3: Use the if-else statement to check if the substring is present if (grepl(substring_to_check, main_string)) { # Step 4a: If the substring is present, execute this block of code print("The string contains 'apple'.") } else { # Step 4b: If the substring is not present, execute this block of code print("The string does not contain 'apple'.") } Output: [1] "The string contains 'apple'."Example 2: Checking if "mango" is present in the string R # Step 1: Define the main character string main_string <- "We are enjoying delicious fruits." # Step 2: Define the substring to check for substring_to_check <- "mango" # Step 3: Use the if-else statement to check if the substring is present if (grepl(substring_to_check, main_string)) { # Step 4a: If the substring is present, execute this block of code print("The string contains 'mango'.") } else { # Step 4b: If the substring is not present, execute this block of code print("The string does not contain 'mango'.") } Output: [1] "The string does not contain 'mango'." Create Quiz Comment L lunatic1 Follow 4 Improve L lunatic1 Follow 4 Improve Article Tags : R Language Explore R Tutorial | Learn R Programming Language 4 min read IntroductionR Programming Language - Introduction 4 min read Interesting Facts about R Programming Language 4 min read R vs Python 5 min read Environments in R Programming 3 min read Introduction to R Studio 4 min read How to Install R and R Studio? 4 min read Creation and Execution of R File in R Studio 5 min read Clear the Console and the Environment in R Studio 2 min read Hello World in R Programming 2 min read Fundamentals of RBasic Syntax in R Programming 3 min read Comments in R 3 min read R-Operators 5 min read R-Keywords 2 min read R-Data Types 5 min read VariablesR Variables - Creating, Naming and Using Variables in R 5 min read Scope of Variable in R 5 min read Dynamic Scoping in R Programming 5 min read Lexical Scoping in R Programming 4 min read Input/OutputTaking Input from User in R Programming 7 min read Printing Output of an R Program 4 min read Print the Argument to the Screen in R Programming - print() Function 2 min read Control FlowControl Statements in R Programming 4 min read Decision Making in R Programming - if, if-else, if-else-if ladder, nested if-else, and switch 3 min read Switch case in R 2 min read For loop in R 5 min read R - while loop 5 min read R - Repeat loop 2 min read goto statement in R Programming 2 min read Break and Next statements in R 3 min read FunctionsFunctions in R Programming 5 min read Function Arguments in R Programming 4 min read Types of Functions in R Programming 6 min read Recursive Functions in R Programming 4 min read Conversion Functions in R Programming 4 min read Data StructuresData Structures in R Programming 4 min read R Strings 6 min read R-Vectors 4 min read R-Lists 6 min read R - Array 7 min read R-Matrices 10 min read R-Factors 4 min read R-Data Frames 6 min read Object Oriented ProgrammingR-Object Oriented Programming 7 min read Classes in R Programming 3 min read R-Objects 3 min read Encapsulation in R Programming 3 min read Polymorphism in R Programming 6 min read R - Inheritance 7 min read Abstraction in R Programming 3 min read Looping over Objects in R Programming 5 min read S3 class in R Programming 8 min read Explicit Coercion in R Programming 3 min read Error HandlingHandling Errors in R Programming 3 min read Condition Handling in R Programming 5 min read Debugging in R Programming 3 min read Like