- 授权协议: MIT
- 开发语言:
- 操作系统: 跨平台
- 软件首页: https://hex.pm/packages/alchemic_pinyin
- 软件文档: https://github.com/zhangsoledad/alchemic_pinyin/blob/master/README.md
- 官方下载: https://github.com/zhangsoledad/alchemic_pinyin/archive/master.zip
软件介绍
alchemic_pinyin是一个中文汉字转拼音应用。
安装
添加“pinyin”到您 mix.exs 中的依赖列表
def deps do
[{:alchemic_pinyin, "~> 0.1.0"}]
end确保“pinyin”已经启动
def application do [applications: [:alchemic_pinyin]] end
用法
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"基准测试
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
Text Processing in Python
David Mertz / Addison-Wesley Professional / 2003-6-12 / USD 54.99
Text Processing in Python describes techniques for manipulation of text using the Python programming language. At the broadest level, text processing is simply taking textual information and doing som......一起来看看 《Text Processing in Python》 这本书的介绍吧!
