Tôi đang cố gắng phân tách văn bản JTextArea
bằng cách sử dụng biểu thức chính quy để phân tách Chuỗi theo \n
Tuy nhiên, điều này không hoạt động và tôi cũng đã thử \r\n|\r|n
và nhiều tổ hợp biểu thức chính khác. Mã số:
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");
}