Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making a regular expression to find the end of sentences in a text. Here for I assume that any sentence can end with either .!? Sometimes though people like two write !!!!!! at the and of their sentence. So I want to replace any repeating dots, exclamation marks or question marks. But I want to allow the use of '...'. How can I include this exception? Please advise, Thanks!

Pattern p = null;
    try {
    //([!?.] with optional spaces), followed by ([!?.] with optional spaces) repeated 1 or more times
        p = Pattern.compile("([!?.]\\s*)([!?.]\\s*)+");
    }
    catch (PatternSyntaxException pex) {
        pex.printStackTrace();
        System.exit(0);
    }

    //get the matcher
    Matcher m = p.matcher(this.sentence);
    int index = 0;
    while(m.find(index))
    {
        System.out.println(this.sentence);
        System.out.println(p.toString());
        String toReplace = sentence.substring(m.start(), m.end());
        toReplace = toReplace.replaceAll("\\.","\\\\.");
        toReplace =toReplace.replaceAll("\\?","\\\\?");
        String replacement = ""+sentence.charAt(m.start());
        this.sentence = this.sentence.replaceAll(toReplace, replacement);
        System.out.println("");
        index = m.end();
        System.out.println(this.sentence);
    }
share|improve this question
6  
You can have periods inside sentences without them marking the end of the sentence, e.g. like in this one. – Christoffer Hammarström Mar 10 '11 at 14:30
You don't need RegEx to find end of sentences. What kind of input are you using? Is it plain text without any formatting? What output format would you like? Is it sentences separated by newline? – vbence Mar 10 '11 at 14:31
It will probably near impossible to consider all edge cases (see Christoffer's comment). – helpermethod Mar 10 '11 at 14:32
I need indeed every sentence separated by a new line. – Rob Hufschmitt Mar 10 '11 at 14:39
@ Christoffer Hammarström: I still need to find a solution for things like e.g. or a.s.a.p. But this is not my biggest concern at the moment. – Rob Hufschmitt Mar 10 '11 at 14:41

3 Answers

Disclaimer: my answer will be off topic (not using regular expressions).

If it's not too heavyweight, try using Apache OpenNLP. NLP means "natural language processing". Check documentation on detecting sentences.

The relevant bit of code is:

String sentences[] = sentenceDetector.sentDetect("  First sentence. Second sentence. ");

You'll get an array of two Strings. First one will be "First sentence.", second one will be "Second sentence.".

There's more code to be written before using aforementioned line of code, but you get the general idea.

share|improve this answer

The simplest solution to this is usually to first replace all occurrences of the string "..." with some special char that isn't otherwise in the text, for example an ascii control character.

After this replace, replace all the multiple instances of your end-of-sentence characters with singles.

Then find the end of sentences with your end-of-sentence characters + the special char you used to replace "..." (if you want "..." to denote an end of a sentence)

Lastly replace the special char with "..." again.

I am not a java programmer so i can't give you specific java code to do it, but the easiest way for this type of problem is usually multiple split/join statements an not replaces.

so something like:

str.split("...").join("<special char>")
share|improve this answer

The simplest regex solution for the "..." case is just to use a quantified match:

someString.split("(\\.{1,2})|(\\.{4,})|(\\?+)|(!+)");

This is of course disregarding the other edge cases as already mentioned.

share|improve this answer
Isn't there a way of using negation. like ([!?.]\\s*)([!?.]\\s*)+ AND NOT (\\.{3}) ? – Rob Hufschmitt Mar 10 '11 at 14:58
As far as I am aware there is no negation in regular expressions (except for character classes.) You could say something like ".{1,2}([^.]|.{2,})" i.e. 1 or 2 . followed either by something that isn't a period or at least two more periods in a row. – M. Jessup Mar 10 '11 at 16:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.