Crates.io | text_lines |
lib.rs | text_lines |
version | 0.6.0 |
source | src |
created_at | 2021-08-13 16:17:11.974627 |
updated_at | 2022-07-11 21:51:07.606298 |
description | Information about lines of text in a string. |
homepage | |
repository | |
max_upload_size | |
id | 435750 |
size | 25,502 |
Information about lines of text in a string.
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