Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 527 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 527 Bytes

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);