do (version 1.4.0.0)

right: Truncate Characters from the Right

Description

Truncate Characters from the Right

Usage

right(x, n)

Arguments

x

can be number, strings, verctors, dataframe or matrix.

n

length

Value

substring

Examples

Run this code
# NOT RUN {
right("abcd",3)
right(c("abc","gjh"),2)
df = data.frame(
  a = c(123,234,456),
  b = c("abc","bcd","hjg")
)
right(df,2)
# }

Run the code above in your browser using DataCamp Workspace