zhangsoledad / alchemic_pinyin

Elixir汉字转化拼音

Home Page:https://hex.pm/packages/alchemic_pinyin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

alchemic_pinyin

Build Status Inline docs

中文汉字转拼音

Inspired by chinese_pinyin.

Installation

  1. Add pinyin to your list of dependencies in mix.exs:
def deps do
  [{:alchemic_pinyin, "~> 0.1.0"}]
end
  1. Ensure pinyin is started before your application:
def application do
  [applications: [:alchemic_pinyin]]
end

Usage

iex> Pinyin.from_string("龡龢龣龤龥癩")
"chui he jue xie yu la"
iex> Pinyin.from_string("龡龢龣龤龥癩", tone: true)
"chùi hé júe xíe yù là"
iex> Pinyin.from_string("龡龢龣龤龥癩", splitter: "-")
"chui-he-jue-xie-yu-la"
iex> Pinyin.from_string("龡龢龣龤龥癩", [], &String.first/1)
"c"

benchmark

mix bench

OS X

2.7 GHz Intel Core i5 8 GB 1867 MHz DDR3

Settings:
  duration:      1.0 s

BasicBench
  [14:01:23] 1/1: hello pinyin

Finished in 4.11 seconds

BasicBench
  hello pinyin      500000   6.73 µs/op

About

Elixir汉字转化拼音

https://hex.pm/packages/alchemic_pinyin

License:MIT License


Languages

Language:Elixir 97.5%Language:Ruby 2.5%