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 ' ' ) ?
feedback
|
|
To get the last line in your JEditorPane, split the text in the editor on
Similarly, to get the last word, split the last line on space. | |||
feedback
|
|
Utilities class can be used with formatted content e.g. html
| |||
feedback
|