mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2025-01-31 19:21:55 +01:00
23 lines
399 B
R
23 lines
399 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/utils.R
|
|
\name{cut_string_length}
|
|
\alias{cut_string_length}
|
|
\title{Cut string to desired length}
|
|
\usage{
|
|
cut_string_length(data, l = 100)
|
|
}
|
|
\arguments{
|
|
\item{data}{data}
|
|
|
|
\item{l}{length}
|
|
}
|
|
\value{
|
|
character string of length l
|
|
}
|
|
\description{
|
|
Cut string to desired length
|
|
}
|
|
\examples{
|
|
"length" |> cut_string_length(l=3)
|
|
}
|