![]() |
VOOZH | about |
nchar() method in R Programming Language is used to get the length of a character in a string object.
Syntax: nchar(string)
Where: String is object.
Return: Returns the length of a string.
In this example, we are going to see how to get the length of a string object using nchar() method.
Output:
[1] 15
In this example, we will get the length of the vector using nchar() method.
Output:
'character' 5 1 5 2
The nchar() function provides an optional argument called keepNA, it can help when dealing with NA values.
Output:
1 5 2
In the above example, the first element is NULL then it returns nothing and the last element NA returns 2 because we keep keepNA = FALSE. If we pass keepNA = TRUE, then see the following output:
Output:
0 5 <NA>