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

View source: R/strlen.R

strlenR Documentation

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

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'


lvec documentation built on Nov. 10, 2022, 6:18 p.m.

Related to strlen in lvec...