Remove/Replace/Extract Zip Codes

Usage

rm_zip(text.var, trim = !extract, clean = TRUE, pattern = "@rm_zip", replacement = "", extract = FALSE, dictionary = getOption("regex.library"), ...)

Arguments

text.var
The text variable.
trim
logical. If TRUE removes leading and trailing white spaces.
clean
trim logical. If TRUE extra white spaces and escaped character will be removed.
pattern
A character string containing a regular expression (or character string for fixed = TRUE) to be matched in the given character vector. Default, @rm_zip uses the rm_zip regex from the regular expression dictionary from the dictionary argument.
replacement
Replacement for matched pattern.
extract
logical. If TRUE the zip codes are extracted into a list of vectors.
dictionary
A dictionary of canned regular expressions to search within if pattern begins with "@rm_".
...
Other arguments passed to gsub.

Value

Returns a character string with U.S. 5 and 5+4 zip codes removed.

Description

Remove/replace/extract zip codes from a string.

References

The time regular expression was taken from: http://stackoverflow.com/a/25223890/1000343

Examples

x <- c("Mr. Bean bought 2 tickets 2-613-213-4567", "43 Butter Rd, Brossard QC K0A 3P0 - 613 213 4567", "Rat Race, XX, 12345", "Ignore phone numbers(613)2134567", "Grab zips with dashes 12345-6789 or no space before12345-6789", "Grab zips with spaces 12345 6789 or no space before12345 6789", "I like 1234567 dogs" ) rm_zip(x)
[1] "Mr. Bean bought 2 tickets 2-613-213-4567" "43 Butter Rd, Brossard QC K0A 3P0 - 613 213 4567" [3] "Rat Race, XX," "Ignore phone numbers(613)2134567" [5] "Grab zips with dashes or no space before" "Grab zips with spaces or no space before" [7] "I like 1234567 dogs"
rm_zip(x, extract=TRUE)
[[1]] [1] NA [[2]] [1] NA [[3]] [1] "12345" [[4]] [1] NA [[5]] [1] "12345-6789" "12345-6789" [[6]] [1] "12345 6789" "12345 6789" [[7]] [1] NA
## ======================= ## ## BUILD YOUR OWN FUNCTION ## ## ======================= ## ## example from: http://stackoverflow.com/a/26092576/1000343 zips <- data.frame(id = seq(1, 6), address = c("Company, 18540 Main Ave., City, ST 12345", "Company 18540 Main Ave. City ST 12345-0000", "Company 18540 Main Ave. City State 12345", "Company, 18540 Main Ave., City, ST 12345 USA", "Company, One Main Ave Suite 18540m, City, ST 12345", "company 12345678") ) ## Function to grab even if a character follows the zip # paste together a more flexible regular expression pat <- pastex( "@rm_zip", "(?<!\\d)\\d{5}(?!\\d)", "(?<!\\d)\\d{5}-\\d{4}(?!\\d)" ) # Create your own function that extract is set to TRUE rm_zip2 <- rm_(pattern=pat, extract=TRUE) rm_zip2(zips$address)
[[1]] [1] "18540" "12345" [[2]] [1] "18540" "12345-0000" [[3]] [1] "18540" "12345" [[4]] [1] "18540" "12345" [[5]] [1] "18540" "12345" [[6]] [1] NA
## Function to extract just 5 digit zips rm_zip3 <- rm_(pattern="(?<!\\d)\\d{5}(?!\\d)", extract=TRUE) rm_zip3(zips$address)
[[1]] [1] "18540" "12345" [[2]] [1] "18540" "12345" [[3]] [1] "18540" "12345" [[4]] [1] "18540" "12345" [[5]] [1] "18540" "12345" [[6]] [1] NA