Chinese2digits 是一个将中文数字(大写数字) 转化为阿拉伯数字的工具。这个工具是自然语言处理系统(NLP)中非常重要的组件。常见的应用场景有:聊天机器人,知识图谱,OCR(光学字符识别)系统,等等。
Chinese2digits is tool that transfer the Numbers writen in Capital Chinese to digits number. This tool is a vital component of NLP system such as: chat robot, knowledge graph, and OCR system etc.
添加如下代码到
Add this to your Cargo.toml
:
toml
[dependencies]
chinese2digits = "1"
``` rust
use chinese2digits::takenumberfrom_string;
//混合提取 let stringexample = "百分之5负千分之15".tostring(); //第二个开关为 百分比转换开关,是否把百分号转换为小鼠 第三个开关为繁体转简体强制开关,是否强制转换 let testresult = takenumberfromstring(&stringexample, true, true); asserteq!(testresult.replacedtext, "0.05-0.015"); asserteq!(testresult.chnumberstringlist, vec!["百分之5", "负千分之15"]); asserteq!(testresult.digitsstring_list, vec!["0.05", "-0.015"]);
```
好用记得Fork and Star。
If you need the code in JavaScript,just send me message, fork and star~~
chinese2digits is licensed under the Apache License 2.0.