I am using text-processing-rs 0.2.1
use text_processing_rs::normalize_sentence_aviation;
fn main() {
let result = normalize_sentence_aviation("Alright thirty five sixty two appreciate your help United seven eighty eight");
println!("{result}");
currently prints
Alright 97 appreciate your help United 788
I expect it prints
Alright 3562 appreciate your help United 788
United 788 has handled properly.
For thirty five sixty two, it still tries to add two numbers 35 + 62 = 97
I am using text-processing-rs 0.2.1
currently prints
I expect it prints
United 788has handled properly.For
thirty five sixty two, it still tries to add two numbers 35 + 62 = 97