Code Monkey home page Code Monkey logo

runicode's Introduction

RUnicode -- Normalize Unicode characters

Description

Normalize Unicode characters of a character vector or factor using ICU library. Currently, Windows is not supported.

Install

Firstly, install ICU library and make sure that you can execute icu-config --version.

Mac OS X

$ brew install icu4c
$ brew link icu4c --force

Debian

$ sudo aptitude install libicu-dev

CentOS

$ sudo yum install libicu-devel

Next, clone the repository and install the package.

$ git clone [email protected]:abicky/RUnicode.git
$ R CMD INSTALL RUnicode

Usage

unormalize(x, form = c("NFKC", "NFC", "NFKD", "NFD"), encoding = "utf8")

See also ?unormalize

Examples

> x <- c("\uff71\uff72\uff73", "\uff11\uff12\uff13")
> x
[1] "アイウ"    "123"
> unormalize(x, "NFKC")
[1] "アイウ" "123"   
> ga <- "\u304c"
> ga
[1] "が"
> charToRaw(ga)
[1] e3 81 8c
> charToRaw(unormalize(ga, "NFD"))
[1] e3 81 8b e3 82 99

runicode's People

Contributors

abicky avatar

Stargazers

Juan Ignacio Navarro-Horniacek avatar Shinya Uryu avatar Rupy avatar

Watchers

James Cloos avatar Rupy avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.