restore_capitals {verbaliseR} | R Documentation |
Restore sustom capitalisation in a string
restore_capitals(x, items_to_capitalise)
x |
A string in which capitalisation needs to be restored |
items_to_capitalise |
Whole words or acronyms in which capitalisation must be retained; special characters can be included (e.g. "R2-D2") |
A string with restored capitals
x <- "Should i tell c-3po the french call him z-6po?"
restore_capitals(x, c("I", "C-3PO", "French", "Z-6PO"))