Skip to contents

[Stable]

render_brazil_address()

Usage

render_brazil_address(
  street = NA_character_,
  complement = NA_character_,
  neighborhood = NA_character_,
  municipality = NA_character_,
  state = NA_character_,
  postal_code = NA_character_
)

Arguments

street

(Optional) A character vector with the street names (Default: NA_character).

complement

(Optional) A character vector with the complement of the address (Default: NA_character).

neighborhood

(Optional) A character vector with the neighborhood names (Default: NA_character).

municipality

(Optional) A character vector with the name of the municipalities (Default: NA_character).

state

(Optional) A character vector with the name of the states (Default: NA_character).

postal_code

(Optional) A character vector with the postal codes (Default: NA_character).

Value

A character vector with the formatted address.

Examples

render_brazil_address(
  street = c("Viaduto do Chá, 15", "Alameda Ribeiro da Silva, 919"),
  complement = c("", "Ap. 502"),
  neighborhood = c("Centro", "Campos Elíseos"),
  municipality = c("São Paulo", "São Paulo"),
  state = c("SP", "SP"),
  postal_code = c("01002-020", "01217-010")
)
#> [1] "Viaduto do Chá, 15, Centro, São Paulo-SP, 01002-020, Brasil"                            
#> [2] "Alameda Ribeiro da Silva, 919, Ap. 502, Campos Elíseos, São Paulo-SP, 01217-010, Brasil"