I\'m trying to break up a paragraph into sentences. Here is my code so far:
import java.util.*; public class StringSplit { public static void main(String a
You can use the Class SentenceSplitter provided by this open source library here.
SentenceSplitter
SentenceSplitter sp = new SentenceSplitter("filename"); String str = null; while((str = sp.next().toString()) != null) { //Your code here. }