Course
Data Frames
Convert a List to a DataframeCreate an Empty DataframeCombine Two Dataframe into OneChange Column Name of a DataframeExtract Columns From a DataframeDrop Columns in a DataframeReorder Columns in a DataframeSplit DataframeMerge Multiple DataframesDelete Rows From DataframeMake a List of DataframesIntroduction
"Hello World" ProgramAdd Two VectorsFind Sum, Mean and Product of Vector in R ProgrammingTake Input From UserGenerate Random Number from Standard DistributionsSample from a PopulationFind Minimum and MaximumSort a VectorStrings
Concatenate Two StringsFind the Length of a StringCheck if Characters are Present in a StringExtract n Characters From a StringReplace Characters in a StringCompare two StringsConvert Factors to CharactersTrim Leading and Trailing WhitespacesVectors
Concatenate a Vector of StringsCheck if a Vector Contains the Given ElementCount the Number of Elements in a VectorFind Index of an Element in a VectorAccess Values in a VectorAdd Leading Zeros to VectorR Program to Find the Length of a String
The length of a string means the total number of characters present in a given string.
For example, the string "Programiz"
has the length 9.
In R, there are two ways to find the length of a string. We can use the nchar()
function
or the str_length()
function from the stringr
package.
Example 1: Length of a String in R Using nchar()
# create a string
string1 <- "Programiz"
# use nchar() to find length of string1
result <- nchar(string1)
cat("Total Length:", result)
Output
Total Length: 9
In the above example, we have used the nchar()
function to find the length of a string variable named string1.
Since string1 contains a string "Programiz"
, which has a total of 9 characters. So nchar()
returns 9.
Example 2: Length of a String in R Using str_length()
In order to use the str_length()
function, we first import the stringr
package.
# import stringr package
library(stringr)
string1 <- "Programiz"
# use str_length() of stringr package to find length
result <- str_length(string1)
cat("Total length:", result)
Output
Total length: 9
Here, we have used the str_length()
function provided by the stringr
package to find the length of string1.