最佳答案
我试图在JTextArea
中使用正则表达式分割文本,通过\n
分割字符串,然而,这并不奏效,我也尝试了\r\n|\r|n
和许多其他正则表达式组合。
代码:< / p >
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");
}