Learn R Programming

mark (version 0.8.1)

str_slice: String Slice

Description

Slice/split a string into multiple lines by the desired length of the line.

Usage

str_slice(x, n = 80L)

str_slice_by_word(x, n = 80L)

Value

A character vector

Arguments

x

A character vector

n

Integer, the length of the line split

Examples

Run this code
if (requireNamespace("stringi")) {
  x <- stringi::stri_rand_lipsum(1)
  str_slice(x)
  str_slice_by_word(x, n = 50L)
}

Run the code above in your browser using DataLab