/toypackage

What the Package Does (One Line, Title Case)

Primary LanguageROtherNOASSERTION

toypackage

The goal of toypackage is to make splitting strings easier

Installation

You can install the development version of toypackage from GitHub with:

# install.packages("devtools")
devtools::install_github("VolundurH/toypackage")

Example

This is a basic example which shows you how to solve a common problem:

library(toypackage)

x <- "a,b,c"
str_split_one(x, pattern = ",")
#> [1] "a" "b" "c"