Tazinho / snakecase

🐍🐍🐍 A systematic approach to parse strings and automate the conversion to snake_case, UpperCamelCase or any other case.
https://tazinho.github.io/snakecase/
GNU General Public License v3.0
146 stars 9 forks source link

Possibly vectorize sep_out over the substrings ... #161

Closed Tazinho closed 5 years ago

Tazinho commented 5 years ago

meaning sth like

to_any_case("bla_bla_bla", sep_out = c(".", "-"))
#> "bla.bla-bla"

Should work, which might be far more useful than returning c("bla.bla.bla", "bla-bla-bla").

Tazinho commented 5 years ago

Needs documentation also in the readme