The goal of stringsplitter is to make splitting strings great again.
This package was created as a demo for the HTA hackathon 2024.
Installation
You can install the development version of stringsplitter from GitHub with:
# install.packages("pak")
pak::pak("HTAhackathon2024/stringsplitter")
Example
You can use stringsplitter to split strings like this:
library(stringsplitter)
splitstring("alfa,bravo,charlie", sep = ",")
#> [1] "alfa" "bravo" "charlie"