Substitutes multiple patterns and corresponding replacements
subVector(x, toSub)subMultiple(x, pattern, replacement)
Vector of text to search
Named vector where the elements are the pattern and the names are the replacement values
Vector of patterns to find in each element of x
Vector of replacement values corresponding to each value of pattern
The text in x with substitutions made
Given a vector of text replaces all patterns each each element
# NOT RUN {
theText <- c('Hi Bob & Cooper how is life today',
'Anything happening now?',
'Sally & Dave are playing with Jess & Julio | with their kids')
subVector(theText, toSub=c("and"='&', 'or'='\\|'))
subVector(theText)
theText <- c('Hi Bob & Cooper how is life today',
'Anything happening now?',
'Sally & Dave are playing with Jess & Julio | with their kids')
subMultiple(theText, pattern=c('&', '\\|'), replacement=c('and', 'or'))
# }
Run the code above in your browser using DataLab