I implement DocumentListener for JEditorPane ( need help with method insertUpdate(DocumentEvent e) ). How to read last word or last line (lines are separated by '\n' and words are separated by ' ' ) ?

link|improve this question

63% accept rate
I'm not sure why you are using a JEditorPane. JEditorPanes are for displaying HTML. HTML doesn't use the concept of lines. You just add text and the HTML will wrap the text when ever it is appropriate. If you want to force a new line then you use a <br> tag. I would think you should be using a JTextArea or a JTextPane to work with regular text. – camickr Apr 13 '11 at 15:35
feedback

2 Answers

up vote 2 down vote accepted

To get the last line in your JEditorPane, split the text in the editor on \n as shown below:

String text = editor.getText();
String[] lines = text.split("\n");
String lastLine = lines[lines.length-1];
System.out.println("Last line: " + lastLine);

Similarly, to get the last word, split the last line on space.

link|improve this answer
Not a very efficient solution especially for large files. You should take advantage of the Docuement structure because the text has already been parsed into line. – camickr Apr 13 '11 at 15:27
feedback

Utilities class can be used with formatted content e.g. html

public static final int getWordStart(JTextComponent c, int offs) throws BadLocationException 
public static final int getWordEnd(JTextComponent c, int offs) throws BadLocationException 
link|improve this answer
+1, much better solution that will work on any size file. All you need to know is document.getLength() and you can get the offsets of the last word. Then you use document.getText(...) method to get the word. And if you want the last line you can use the getLineStart/End methods to get the offsets. – camickr Apr 13 '11 at 15:31
feedback

Your Answer

 
or
required, but never shown

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