5个版本 (3个重大更改)

使用旧的Rust 2015

0.4.0 2018年7月22日
0.3.1 2018年3月24日
0.3.0 2017年9月9日
0.2.0 2017年1月16日
0.1.0 2016年3月1日

#116 in 文本处理

Download history • Rust 包仓库 426473/week @ 2024-03-14 • Rust 包仓库 435035/week @ 2024-03-21 • Rust 包仓库 438318/week @ 2024-03-28 • Rust 包仓库 441541/week @ 2024-04-04 • Rust 包仓库 436812/week @ 2024-04-11 • Rust 包仓库 447631/week @ 2024-04-18 • Rust 包仓库 421291/week @ 2024-04-25 • Rust 包仓库 415973/week @ 2024-05-02 • Rust 包仓库 408602/week @ 2024-05-09 • Rust 包仓库 430391/week @ 2024-05-16 • Rust 包仓库 411692/week @ 2024-05-23 • Rust 包仓库 453483/week @ 2024-05-30 • Rust 包仓库 417101/week @ 2024-06-06 • Rust 包仓库 432662/week @ 2024-06-13 • Rust 包仓库 413636/week @ 2024-06-20 • Rust 包仓库 344342/week @ 2024-06-27 • Rust 包仓库

1,691,081 个月下载量
用于 1,330 个Crates (9 直接使用)

MIT 许可证

32KB
864

Difflib 构建状态

Python的difflib库到Rust的移植。它提供了比较词序列所需的所有工具。

安装

只需将difflib添加到Cargo.toml中的依赖项块中

[dependencies]
difflib = "0.4.0"

文档

文档可在https://github.com/DimaKudosh/difflib/wiki找到

示例

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<&str>>();
    let second_text = "zero one tree four".split(" ").collect::<Vec<&str>>();
    let diff = difflib::unified_diff(
        &first_text,
        &second_text,
        "Original",
        "Current",
        "2005-01-26 23:30:50",
        "2010-04-02 10:20:52",
        3,
    );
    for line in &diff {
        println!("{:?}", line);
    }

    //context_diff
    let diff = difflib::context_diff(
        &first_text,
        &second_text,
        "Original",
        "Current",
        "2005-01-26 23:30:50",
        "2010-04-02 10:20:52",
        3,
    );
    for line in &diff {
        println!("{:?}", line);
    }

    //get_close_matches
    let words = vec!["ape", "apple", "peach", "puppy"];
    let result = difflib::get_close_matches("appel", words, 3, 0.6);
    println!("{:?}", result);

    //Differ examples
    let differ = Differ::new();
    let diff = differ.compare(&first_text, &second_text);
    for line in &diff {
        println!("{:?}", line);
    }

    //SequenceMatcher examples
    let mut matcher = SequenceMatcher::new("one two three four", "zero one tree four");
    let m = matcher.find_longest_match(0, 18, 0, 18);
    println!("{:?}", m);
    let all_matches = matcher.get_matching_blocks();
    println!("{:?}", all_matches);
    let opcode = matcher.get_opcodes();
    println!("{:?}", opcode);
    let grouped_opcodes = matcher.get_grouped_opcodes(2);
    println!("{:?}", grouped_opcodes);
    let ratio = matcher.ratio();
    println!("{:?}", ratio);
    matcher.set_seqs("aaaaa", "aaaab");
    println!("{:?}", matcher.ratio());
}

无运行时依赖项