6 releases (2 stable)

1.0.1 Jul 9, 2021
1.0.0 May 4, 2021
0.3.0 Mar 13, 2021
0.2.0 Apr 7, 2020
0.1.1 Apr 6, 2020

#369 in Text processing

Download history 620/week @ 2023-12-15 547/week @ 2023-12-22 743/week @ 2023-12-29 586/week @ 2024-01-05 428/week @ 2024-01-12 486/week @ 2024-01-19 672/week @ 2024-01-26 600/week @ 2024-02-02 490/week @ 2024-02-09 502/week @ 2024-02-16 512/week @ 2024-02-23 513/week @ 2024-03-01 575/week @ 2024-03-08 398/week @ 2024-03-15 651/week @ 2024-03-22 362/week @ 2024-03-29

2,044 downloads per month
Used in 5 crates

MIT license

1MB
66K SLoC

Secular

MIT Latest Version Chat on Miaou

Provide a lowercased diacritics-free version of a character or a string.

For example return e for é.

Secular's char lookup is an inlined lookup of a static table, which means it's possible to use it in performance sensitive code.

Secular also performs (optionally) Unicode normalization.

A common use case for the removal of diacritics and some unicode arterfacts is to ease searches:

(diacritics ignoring normalized search in broot: the user typed rève)

Declaration

By default, diacritics removal is only done on ascii chars, so to include a smaller table.

If you want to handle the whole BMP, use the "bmp" feature" (the downside is that the binary is bigger as it includes a big map).

Default import:

[dependencies]
secular = "0.3"

For more characters (the BMP):

[dependencies]
secular = { version="0.3", features=["bmp"] }

With Unicode normalization functions (using the unicode-normalization crate):

[dependencies]
secular = { version="0.3", features=["normalization"] }

or

[dependencies]
secular = { version="0.3", features=["bmp","normalization"] }

This feature is optional so that you can avoid importing the unicode-normalization crate (note that it's used in many other crates so it's possible your text processing application already uses it).

Usage

On characters:

use secular::*;
let s = "Comunicações"; // normalized string (length=12)
let chars: Vec<char> = s.chars().collect();
assert_eq!(chars.len(), 12);
assert_eq!(chars[0], 'C');
assert_eq!(lower_lay_char(chars[0]), 'c');
assert_eq!(chars[8], 'ç');
assert_eq!(lower_lay_char(chars[8]), 'c');

On strings:

use secular::*;
let s = "Comunicações"; // unnormalized string (length=14)
assert_eq!(s.chars().count(), 14);
let s = normalized_lower_lay_string(s);
assert_eq!(s.chars().count(), 12);
assert_eq!(s, "comunicacoes");

Dependencies