In this tutorial you will learn about the R String tolower and its application with practical example.
R String tolower
The tolower() function is used to convert given string characters to lower case.
Syntax:-
1 |
tolower(str) |
Above is the general syntax of tolower() function, here
str:- It is a vector input representing a string.
Example:-
1 2 3 |
print("W3Adda - R tolower function.") result <- tolower("Hello, W3Adda") print(result) |
Output:-