- 授权协议: MIT
- 开发语言: Ruby
- 操作系统: 跨平台
- 软件首页: https://github.com/flyerhzm/chinese_pinyin
- 软件文档: https://github.com/flyerhzm/chinese_pinyin/blob/master/README.md
- 官方下载: https://github.com/flyerhzm/chinese_pinyin/tags
软件介绍
chinese_pinyin 是一款将汉字转化为拼音的应用。
安装
gem install chinese_pinyin
或者在Gemfile中添加:
gem 'chinese_pinyin'
用法
命令行
$ ch2py -h Usage: ch2py [opts] -c, --camelcase Camelcase of each word -i, --stdin Read from stdard input -t, --tone Show tone at end of word -m, --tonemarks Show tone at top of letter, this would cover -t option -s, --splitter <splitter> Splitter of each word, use a space by default -v, --version Show version -h, --help Show this help $ ch2py 中文 zhong wen
代码
require 'chinese_pinyin'
Pinyin.t('中国') => "zhong guo"
Pinyin.t('你好world') => "ni hao world"
Pinyin.t('中国', splitter: '-') => "zhong-guo"
Pinyin.t('中国', splitter: '') => "zhongguo"
Pinyin.t('中国', tone: true) => "zhong1 guo2"
Pinyin.t('中国', tonemarks: true) => "zhōng guó"
Pinyin.t('北京') { |letters| letters[0].upcase } => 'BJ'
Pinyin.t('北京') { |letters, i| letters[0].upcase if i == 0 } => 'B'Polyphone Issue
使用Words.dat覆盖默认行为
默认配置
Pinyin.t('广州') => "yan zhou"增加 Words.dat 文件
广州|guang3 zhou1
为 Words.dat 设置 ENV['WORDS_FILE']
ENV['WORDS_FILE'] = "Words.dat path"
Pinyin.t('广州') => "guang zhou"
图论——一个迷人的世界
本杰明,查特兰,张萍 / 机械工业出版社 / 2001-1-1
本书介绍了图论的基本概念,解释了图论中各种经典问题。例如,熄灯的问题、小生成树问题、哥尼斯堡七桥问题、中国邮递员问题、国际象棋中马的遍历问题和路的着色问题等等。书中也给出了各种类型的图,例如,二部图、欧拉图、彼得森图和树;等等。每一章都为读者设置了练习题,包含了具有挑战性的探索性问题。一起来看看 《图论——一个迷人的世界》 这本书的介绍吧!
