campfin 1.0.8
- Add
string
argument toguess_delim()
to read the input as a single line
of a file regardless of\n
presence. - Have the
delim
argument ofread_names()
default toguess_delim()
. - Add
pad
argument tonormal_zip()
(defaultFALSE
) to control the use of
str_pad()
on ZIP codes without a leading zero. - The
end
argument has been added toabbrev_full
to target onlyfull
values at the end of a string. Defaults toFALSE
. normal_address()
usesend = TRUE
inabbrev_full
to target only the
street type.
abbrev_full("123 MOUNTAIN ROAD", full = usps_street, end = FALSE)
#> "123 MTN RD"
normal_address("123 MOUNTAIN ROAD", abb = usps_street)
#> "123 MOUNTAIN RD"