Learn R Programming

lvec (version 0.2.5)

strlen: Get and set the maximum string length of a character lvec

Description

Get and set the maximum string length of a character lvec

Usage

strlen(x)

strlen(x) <- value

Arguments

x

a lvec of type character.

value

the new value of the maximum string length.

Examples

Run this code
a <- as_lvec('123')
strlen(a)  # = 3
# Strings are truncated to strlen
lset(a, 1, '123456')
print(a)  # '123'
strlen(a) <- 5
lset(a, 1, '123456')
print(a)  # '12345'

Run the code above in your browser using DataLab