VOOZH about

URL: https://www.geeksforgeeks.org/r-language/convert-string-from-uppercase-to-lowercase-in-r-programming-tolower-method/

⇱ Convert String from Uppercase to Lowercase in R programming - tolower() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Convert String from Uppercase to Lowercase in R programming - tolower() method

Last Updated : 12 Jul, 2025
tolower() method in R programming is used to convert the uppercase letters of string to lowercase string.
Syntax: tolower(s) Return: Returns the lowercase string.
Example 1: Output:
[1] "geeks for geeks"
Example 2: Output:
[1] "the quick brown fox jumps over the lazy dog"
Comment
Article Tags:
Article Tags:

Explore