#nlp #spanish #english #french #words-to-numbers

text2num

Parse and convert numbers written in English, Spanish or French into their digit representation

8 stable releases

2.1.4 Aug 29, 2023
2.1.3 Jun 15, 2023
2.1.1 Apr 7, 2023
2.1.0 Feb 21, 2022
1.7.0 Dec 6, 2021

#275 in Text processing

Download history 15/week @ 2024-02-23 21/week @ 2024-03-01 31/week @ 2024-03-08 20/week @ 2024-03-15 19/week @ 2024-03-22 49/week @ 2024-03-29 54/week @ 2024-04-05 13/week @ 2024-04-12

137 downloads per month

MIT license

96KB
2K SLoC

Parse and convert numbers written in English, Spanish or French into their digit representation.

This crate provides a library for recognizing, parsing and transcribing into digits (base 10) numbers expressed in natural language.

Examples

check some string is a valid number in a given language

use text2num::{Language, text2digits};

let es = Language::spanish();
let utterance = "ochenta y cinco";

match text2digits(utterance, &es) {
    Ok(repr) => println!("'{}' means {} in Spanish", utterance, repr),
    Err(_) => println!("'{}' is not a number in Spanish", utterance)
}

When run, the above code should print 'ochenta y cinco' means 85 in Spanish on the standard output.

find and replace numbers in a natural speech string

Most often, you just want to rewrite a string containing natural speech so that the numbers it contains (cardinals, ordinals, decimal numbers) appear in digit (base 10) form instead.

As isolated smaller numbers may be easier to read in plain text, you can specify a threshold under which isolated simple cardinals and ordinals are not replaced.

use text2num::{Language, replace_numbers};

let en = Language::english();

let sentence = "Let me show you two things: first, isolated numbers are treated differently than groups like one, two, three. And then, that decimal numbers like three point one four one five are well understood.";

assert_eq!(
    replace_numbers(sentence, &en, 10.0),
    "Let me show you two things: first, isolated numbers are treated differently than groups like 1, 2, 3. And then, that decimal numbers like 3.1415 are well understood."
);

assert_eq!(
    replace_numbers(sentence, &en, 0.0),
    "Let me show you 2 things: 1st, isolated numbers are treated differently than groups like 1, 2, 3. And then, that decimal numbers like 3.1415 are well understood."
);

For more advances usages (e.g. on token streams), see the documentation.

Dependencies

~2MB
~48K SLoC