Skip to contents

Convert a Hex string to regular text

Usage

convert_hex_to_char(hex_string)

Arguments

hex_string

The address containg hex characters to convert.

Examples

address <- c(
  "D&#xe9;partement de Psychologie, Universit&#xe9; du Qu&#xe9;bec &#xe0; Montr&#xe9;al",
  "Department of Behavioural and Cognitive Sciences, University of Luxembourg"
)
convert_hex_to_char(address)
#> [1] "Département de Psychologie, Université du Québec à Montréal"               
#> [2] "Department of Behavioural and Cognitive Sciences, University of Luxembourg"