RIGHT: Basic RIGHT function from excel

Description Usage Arguments Value Examples

View source: R/RIGHT.R

Description

It acts similiarly to Excel's RIGHT function. It takes the string and takes the amount of characters you want to extract from it.

Usage

1
RIGHT(text, num_chars)

Arguments

text

from where should it get the characters

num_chars

how many characters should it get?

Value

In this example we take "Kayakata" and extract 4 characters from the right handside of the string. Functions will always return character class.

Examples

1
RIGHT("Kayakata",4)

ExcelFunctionsR documentation built on July 1, 2020, 8:35 p.m.