mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2025-02-01 03:31:54 +01:00
23 lines
399 B
Plaintext
23 lines
399 B
Plaintext
|
% 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)
|
||
|
}
|