9个版本 (5个重大变更)

0.6.0 2022年7月11日
0.5.0 2022年7月11日
0.4.1 2021年11月25日
0.3.0 2021年9月3日
0.1.2 2021年8月13日

#150 in #line

Download history • Rust 包仓库 21779/week @ 2024-03-29 • Rust 包仓库 7756/week @ 2024-04-05 • Rust 包仓库 10573/week @ 2024-04-12 • Rust 包仓库 11388/week @ 2024-04-19 • Rust 包仓库 10548/week @ 2024-04-26 • Rust 包仓库 9788/week @ 2024-05-03 • Rust 包仓库 13395/week @ 2024-05-10 • Rust 包仓库 18874/week @ 2024-05-17 • Rust 包仓库 16547/week @ 2024-05-24 • Rust 包仓库 11438/week @ 2024-05-31 • Rust 包仓库 16906/week @ 2024-06-07 • Rust 包仓库 14703/week @ 2024-06-14 • Rust 包仓库 14362/week @ 2024-06-21 • Rust 包仓库 14598/week @ 2024-06-28 • Rust 包仓库 11321/week @ 2024-07-05 • Rust 包仓库 6534/week @ 2024-07-12 • Rust 包仓库

50,395 每月下载量
用于 64 个crate (12直接)

MIT 协议

25KB
611

text_lines

字符串中文本行的信息。

use text_lines::TextLines;

let text = "Line 1\n\tLine 2";
let info = TextLines::new(&text); // defaults to an indent width of 4

let line_index = info.line_index(9); // 1
let line_and_column = info.line_and_column_index(9); // 1, 2
let byte_index = info.byte_index(&line_and_column); // 9
let line_and_column_display = info.line_and_column_display(9); // 2, 6

let info = TextLines::with_indent_width(&text, 2);
let line_and_column_display = info.line_and_column_display(9); // 2, 4

依赖项

~180KB