Learn R Programming

do (version 2.0.0.1)

left: Truncate Characters from the Left

Description

Truncate Characters from the Left

Usage

left(x, n)

Value

substring

Arguments

x

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

n

length

Examples

Run this code
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