do (version 1.4.0.0)

left: Truncate Characters from the Left

Description

Truncate Characters from the Left

Usage

left(x, n)

Arguments

x

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

n

length

Value

substring

Examples

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

Run the code above in your browser using DataLab