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

I'm trying to split text in a JTextArea using a regex to split the String by \n However, this does not work and I also tried by \r\n|\r|n and many other combination of regexes. Code:

public void insertUpdate(DocumentEvent e) {
    String split[], docStr = null;
    Document textAreaDoc = (Document)e.getDocument();

    try {
        docStr = textAreaDoc.getText(textAreaDoc.getStartPosition().getOffset(), textAreaDoc.getEndPosition().getOffset());
    } catch (BadLocationException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

    split = docStr.split("\\n");
}
share|improve this question
1  
what is the error that you get? Dont say "does not work", that doesnt mean anything. Tell us the error/result you get. That is the first step in debugging code - figure out what the wrong result is, and how your program got to that. – Chii Jan 18 '09 at 10:18
What do you realy want to do? - break lines as they are entered in the JTextArea? - finding where the JTextArea is doing line wraps? - ??? – Carlos Heuberger Apr 29 '09 at 12:05

6 Answers

up vote 149 down vote accepted

This should cover you:

String lines[] = String.split("\\r?\\n");

There's only really two newlines (UNIX and Windows) that you need to worry about.

share|improve this answer
11  
A JTextArea document SHOULD use only '\n'; its Views completely ignore '\r'. But if you're going to look for more than one kind of separator, you might as well look for all three: "\r?\n|\r". – Alan Moore Jan 18 '09 at 18:02
This worked well thank you. – dr.manhattan Jan 18 '09 at 19:57
5  
Windows: \r\n Unix: \n Mac: \r – stivlo May 1 '11 at 9:11
Mac 9 uses \r. OSX 10 uses \n – Raekye May 6 at 5:25

If you don’t want empty lines:

String.split("[\\r\\n]+")
share|improve this answer
double backslashes are unnecessary, see section "Backslashes, escapes, and quoting" docs.oracle.com/javase/1.4.2/docs/api/java/util/regex/… – giulio Dec 5 '11 at 22:09
1  
String.split(System.getProperty("line.separator"));

This should be system independent

share|improve this answer
2  
It's an interesting idea, but you should take care that the text actually uses the system's line separator. I've good many many text files under unix (e.g. XML) that uses "Windows" separators and quite a few under Windows that use unix separators. – owlstead Jul 30 '12 at 23:37

The above code doesnt actually do anything visible - it just calcualtes then dumps the calculation. Is it the code you used, or just an example for this question?

try doing textAreaDoc.insertString(int, String, AttributeSet) at the end?

share|improve this answer
insertUpdate() is a DocumentListener method. Assuming the OP is using it right, trying to modify the document from within the listener method will generate an exception. But you're right: the code in that question doesn't actually do anything. – Alan Moore Jan 18 '09 at 17:55
Just an example. – dr.manhattan Jan 18 '09 at 19:50

Maybe this would work:

Remove the double backslashes from the parameter of the split method:

split = docStr.split("\n");
share|improve this answer
bad idea - you need the backslash for escaping... – Yuval Adam Jan 18 '09 at 19:39
3  
Not really. When you write a regex in the form of a Java String literal, you can use "\n" to pass the regex compiler a linefeed symbol, or "\\n" to pass it the escape sequence for a linefeed. The same goes for all the other whitespace escapes except \v, which isn't supported in Java literals. – Alan Moore Jan 18 '09 at 20:55
@Yuval. Sorry that is incorrect, you don't need it at all "Backslashes, escapes, and quoting" docs.oracle.com/javase/1.4.2/docs/api/java/util/regex/… – giulio Dec 5 '11 at 22:10

You don't have to double escape characters in character groups.

For all non empty lines use:

String.split("[\r\n]+")
share|improve this answer

protected by Will Nov 8 '10 at 11:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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