left: A vector of character or numeric symbols as the left edge to extract.
right: A vector of character or numeric symbols as the right edge to extract.
fixed: logical. If TRUE regular expression special characters (c(".", "|", "(", ")", "[", "]", "{", "}", "^", "$", "*", "+", "?")) will be treated as typical characters. If the user wants to pass a regular expression with special characters then fixed = FALSE should be used.
trim: logical. If TRUE removes leading and trailing white spaces.
clean: trim logical. If TRUE extra white spaces and escaped character will be removed.
replacement: Replacement for matched pattern.
extract: logical. If TRUE the strings are extracted into a list of vectors.
include.markers: logical. If TRUE and extract = TRUE returns the markers (left/right) and the text between.
dictionary: A dictionary of canned regular expressions to search within if pattern begins with "@rm_".
...: Other arguments passed to gsub.
merge: logical. If TRUE the results of each bracket type will be merged by string. FALSE returns a named list of lists of vectors of markered text per marker type.
Returns
Returns a character string with markers removed. If rm_between returns merged strings and is significantly faster. If rm_between_multiple the strings are optionally merged by left/right symbols. The latter approach is more flexible and names extracted strings by symbol boundaries, however, it is slower than rm_between.
Examples
x <-"I like [bots] (not)."rm_between(x,"(",")")ex_between(x,"(",")")rm_between(x, c("(","["), c(")","]"))ex_between(x, c("(","["), c(")","]"))rm_between(x, c("(","["), c(")","]"), include.markers=FALSE)ex_between(x, c("(","["), c(")","]"), include.markers=TRUE)## multiple (naming and ability to keep separate bracket types but slower)x <- c("Where is the /big dog#?","I think he's @arunning@b with /little cat#.")rm_between_multiple(x,"@a","@b")ex_between_multiple(x,"@a","@b")rm_between_multiple(x, c("/","@a"), c("#","@b"))ex_between_multiple(x, c("/","@a"), c("#","@b"))x2 <- c("Where is the L1big dogL2?","I think he's 98running99 with L1little catL2.")rm_between_multiple(x2, c("L1",98), c("L2",99))ex_between_multiple(x2, c("L1",98), c("L2",99))state <- c("Computer is fun. Not too fun.","No it's not, it's dumb.","What should we do?","You liar, it stinks!","I am telling the truth!","How can we be certain?","There is no way.","I distrust you.","What are you talking about?","Shall we move on? Good then.","I'm hungry. Let's eat. You already?")rm_between_multiple(state, c("is","we"), c("too","on"))## Use Groupings <-"something before stuff $some text$ in between $1$ and after"rm_between(s,"$","$", replacement="<B>\\2<E>")## Using regular expressions as boundaries (fixed =FALSE)x <- c("There are 2.3 million species in the world","There are 2.3 billion species in the world")ex_between(x, left='There', right ='[mb]illion', fixed =FALSE, include=TRUE)