kanji-number-parser

Crates.iokanji-number-parser
lib.rskanji-number-parser
version0.1.0
sourcesrc
created_at2019-09-09 12:20:40.352341
updated_at2019-09-09 12:20:40.352341
descriptionConvert Chinese numeral `String` to `BigUInt`.
homepage
repositoryhttps://github.com/matsu7874/kanji-number-parser
max_upload_size
id163498
size23,564
Kentaro Matsumoto (matsu7874)

documentation

README

kanji-number-parser

Convert Chinese numeral String to BigUInt.

Getting Started

Simply add to your Cargo.toml:

[dependencies]
kanji-number-parser = "0.1.0"

Example

use kanji_number_parser::parse;
fn main(){
    println!("一億五千万: {}", parse(String::from("一億五千万")).unwrap());
    // => 一億五千万: 150000000
    println!("十二無量大数: {}", parse(String::from("十二無量大数")).unwrap());
    // => 十二無量大数: 1200000000000000000000000000000000000000000000000000000000000000000000
}
Commit count: 7

cargo fmt