RIGHT {ExcelFunctionsR}R Documentation

Basic RIGHT function from excel

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

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

RIGHT("Kayakata",4)

[Package ExcelFunctionsR version 0.1.4 Index]