VOOZH about

URL: https://www.geeksforgeeks.org/r-language/count-number-of-characters-in-string-in-r/

⇱ Count Number of Characters in String in R - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Count Number of Characters in String in R

Last Updated : 23 Jul, 2025

In this article, we are going to see how to get the number of characters in a string in R Programming Language. The number of characters in a string refers to the length of the string.

Examples:

Input: Geeksforgeeks
Output: 13
Explanation: Total 13 characters in the given string.

Input: Hello world
Output: 11

This can be calculated using thebelow-mentioned functions:

  • Using nchar() method
  • Using str_length() method
  • Using stri_length() method

Method 1: Using nchar() method.

nchar() method in R programming is used to get the length of a string.

Syntax:

nchar(string)

Parameter: string

Return: Returns the length of a string

Example: To calculate length


Output
[1] 15

The string "Geeks For Geeks" has 15 characters, including spaces.

This method can be used to return the length of multiple strings passed as a parameter.


Output
[1] 12 6

Method 2. Using str_length () method.

The function str_length() belonging to the ‘stringr’ package can be used to determine the length of strings in R.

Syntax:

str_length (str)

Parameter: string as str

Return value: Length of string

Example: To find length

Output:

[1] 5

This method can be used to return the length of multiple strings passed as a parameter.

Output:

[1] 12 6

Method 3. Using stri_length() method.

This function returns the number of code points in each string.

Syntax:

stri_length(str)

Parameter: str as character vector

Return Value: Returns an integer vector of the same length as str.

Example:

Output:

[1] 6

This method can be used to return the length of multiple strings passed as a parameter.

Output:

[1] 11 6
Comment

Explore