Closed Tazinho closed 5 years ago
i.e. the parsing should be case insensitive, but the replacement should match the exact spelling in the specification of the abbreviation by the user. I.e. the following should work:
to_upper_camel_case("customerID, abbreviations = "ID") [1] "CustomerID" to_upper_camel_case("customerID, abbreviations = "Id") [1] "CustomerId"
Should only be possible for lower, upper, title, and mixed case
Implement via direct vectorization (subsetting) and replacement assignment instead of ifelse()
ifelse()
...solved via lookupds inside of the ifelse :)
i.e. the parsing should be case insensitive, but the replacement should match the exact spelling in the specification of the abbreviation by the user. I.e. the following should work: