/sentence_detection

A flutter plugin that recognizes sentences in paragraphs using LingPipe NLP.

Primary LanguageJavaBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

sentence_detection

A flutter plugin that recognises sentences in paragraphs using lingpipe NLP.

Installation

dependencies

dependencies:
  file_manager: ^1.0.0

import

import 'package:sentence_detection/sentence_detection.dart';

Usages

    String paragraph =
        "This is first sentence. I was born in 01.05.2000. This is third sentence";
    List<String> _sentences = await SentenceDetection.getSentences(paragraph);