[][src]Struct sentence::SentenceTokenizer

pub struct SentenceTokenizer {}

Sentence Tokenizer.

For now this is stateless. This library is in a very early state, but I intend to add preferences and dictionary lookup callback support. ("Intend to come back" are famous last words.)

Implementations

impl SentenceTokenizer[src]

pub fn new() -> Self[src]

Constructor.

pub fn tokenize(&self, sequence: &str) -> Vec<Token>[src]

Turn a text sequence into a series of tokens.

use sentence::{SentenceTokenizer, Token, Punctuation};
let tokenizer = SentenceTokenizer::new();
let tokens = tokenizer.tokenize("Hello, world!");
assert_eq!(tokens, vec![
  Token::Word("Hello".into()),
  Token::Punctuation(Punctuation::Comma),
  Token::Word("world".into()),
  Token::Punctuation(Punctuation::Exclamation),
]);

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.