文件名称:difflib:将Python的difflib库移植到Rust
文件大小:12KB
文件格式:ZIP
更新时间:2024-05-19 13:56:59
rust difflib python-difflib-library Rust
Difflib 将Python的difflib库移植到Rust。 它提供了所有必要的工具来比较单词序列。 安装 只需将difflib添加到Cargo.toml中的依赖项块中 [dependencies] difflib = "0.4.0" 文献资料 可从获得文档。 例子 extern crate difflib; use difflib :: differ :: Differ; use difflib :: sequencematcher :: SequenceMatcher; fn main () { // unified_diff let first_text = "one two three four" . split ( " " ). collect :: < Vec>>(); let second_text = "zero one tr
【文件预览】:
difflib-master
----Cargo.toml(446B)
----src()
--------utils.rs(1KB)
--------sequencematcher.rs(12KB)
--------differ.rs(11KB)
--------lib.rs(6KB)
----examples()
--------example.rs(2KB)
----.travis.yml(689B)
----LICENSE(1KB)
----README.md(2KB)
----tests()
--------tests.rs(5KB)