vote up 2 vote down star
1

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");
}
flag

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 at 12:05

4 Answers

vote up 8 vote down check

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.

link|flag
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
vote up 0 vote down

Maybe this would work:

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

split = docStr.split("\n");
link|flag
bad idea - you need the backslash for escaping... – Yuval A Jan 18 '09 at 19:39
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
vote up 2 vote down

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?

link|flag
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
vote up 0 vote down

If you don’t want empty lines:

String.split("[\\r\\n]+")
link|flag

Your Answer

Get an OpenID
or

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