Learn R Programming

qdapRegex (version 0.3.2)

rm_between: Remove/Replace/Extract Strings Between 2 Markers

Description

Remove/replace/extract strings bounded between a left and right marker.

Usage

rm_between(text.var, left, right, trim = TRUE, clean = TRUE,
  replacement = "", extract = FALSE, include.markers = ifelse(extract,
  FALSE, TRUE), dictionary = getOption("regex.library"), ...)

rm_between_multiple(text.var, left, right, trim = TRUE, clean = TRUE,
  replacement = "", extract = FALSE, include.markers = FALSE,
  merge = TRUE)

Arguments

text.var
The text variable.
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.
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_".
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.
...
Other arguments passed to gsub.

Value

  • 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.

See Also

gsub, rm_bracket, stri_extract_all_regex Other rm_.functions: rm_abbreviation; rm_angle, rm_bracket, rm_bracket_multiple, rm_curly, rm_round, rm_square; rm_caps_phrase; rm_caps; rm_citation_tex; rm_citation; rm_city_state_zip; rm_city_state; rm_date; rm_default; rm_dollar; rm_email; rm_emoticon; rm_endmark; rm_hash; rm_nchar_words; rm_non_ascii; rm_number; rm_percent; rm_phone; rm_postal_code; rm_repeated_characters; rm_repeated_phrases; rm_repeated_words; rm_tag; rm_time; rm_title_name; rm_twitter_url, rm_url; rm_white, rm_white_bracket, rm_white_colon, rm_white_comma, rm_white_endmark, rm_white_lead, rm_white_lead_trail, rm_white_multiple, rm_white_punctuation, rm_white_trail; rm_zip

Examples

Run this code
x <-  "I like [bots] (not)."

rm_between(x, "(", ")")
rm_between(x, "(", ")", extract=TRUE)
rm_between(x, c("(", "["), c(")", "]"))
rm_between(x, c("(", "["), c(")", "]"), extract=TRUE)

rm_between(x, c("(", "["), c(")", "]"), include.markers=FALSE)
rm_between(x, c("(", "["), c(")", "]"), extract=TRUE, 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")
rm_between_multiple(x, "@a", "@b", extract=TRUE)
rm_between_multiple(x, c("/", "@a"), c("#", "@b"))
rm_between_multiple(x, c("/", "@a"), c("#", "@b"), extract=TRUE)

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))
rm_between_multiple(x2, c("L1", 98), c("L2", 99), extract=TRUE)

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 Grouping
s <- "something before stuff $some text$ in between $1$ and after"
rm_between(s, "$", "$", replacement="<B>\\2<E>")

Run the code above in your browser using DataLab