5 unstable releases

0.3.0 Nov 19, 2023
0.2.2 Aug 26, 2023
0.2.1 Aug 6, 2023
0.2.0 Aug 6, 2023
0.1.0 Aug 6, 2023

#762 in Text processing

Download history 726/week @ 2024-07-20 616/week @ 2024-07-27 393/week @ 2024-08-03 255/week @ 2024-08-10 217/week @ 2024-08-17 310/week @ 2024-08-24 316/week @ 2024-08-31 312/week @ 2024-09-07 234/week @ 2024-09-14 265/week @ 2024-09-21 290/week @ 2024-09-28 196/week @ 2024-10-05 332/week @ 2024-10-12 684/week @ 2024-10-19 372/week @ 2024-10-26 270/week @ 2024-11-02

1,687 downloads per month
Used in 6 crates (4 directly)

MIT license

11KB
207 lines

line-numbers crates.io codecov.io

line-numbers is a Rust crate for efficiently finding the line number of a string offset.

Usage

Create a LinePositions, then you can find line numbers for an offset.

let s = "foo\nbar\nbaz\n";
let s_lines: Vec<_> = s.lines().collect();

let line_positions = LinePositions::from(s);

let offset = 5;
let line_num = line_positions.from_offset(offset);
println!(
    "Offset {} is on line {}, which has the text {:?}.",
    offset,
    line_num.display(),
    s_lines[line_num.as_usize()]
);

Similar Projects

  • line-span solves a similar problem, but scans the whole string every time.

lib.rs:

Efficiently find line numbers and line spans within a string.

use line_numbers::LinePositions;

let s = "foo\nbar\nbaz\n";
let s_lines: Vec<_> = s.lines().collect();

let line_positions = LinePositions::from(s);

let offset = 5;
let line_num = line_positions.from_offset(offset);
println!(
    "Offset {} is on line {}, which has the text {:?}.",
    offset,
    line_num.display(),
    s_lines[line_num.as_usize()]
);

No runtime deps