subVector {useful} | R Documentation |
subVector
Description
Substitutes multiple patterns and corresponding replacements
Usage
subVector(x, toSub)
subMultiple(x, pattern, replacement)
Arguments
x |
Vector of text to search |
toSub |
Named vector where the elements are the pattern and the names are the replacement values |
pattern |
Vector of patterns to find in each element of x |
replacement |
Vector of replacement values corresponding to each value of pattern |
Details
Given a vector of text replaces all patterns each each element
Value
The text in x with substitutions made
Author(s)
Jared P. Lander
Examples
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'))
[Package useful version 1.2.6.1 Index]