字串
Unicode
Substring detection performance
字串中有轉為文字的Unicode Symbol?
吳<U+855A>洋
和 游錫<U+5803>
。要把他轉回原本該有的中文字

raw %>%
mutate(title = purrr::map(title, function(x){stringi::stri_unescape_unicode(gsub("<U\\+(....)>", "\\\\u\\1", x))})) %>%
Last updated
Was this helpful?