본문 바로가기

JAVA

[JAVA] 자바 줄바꿈 엔터 공백 제거방법(엑셀 붙여넣기)

자바 공백 제거 방법

 

엑셀파일에서 셀을 클릭하고 복사 후 TEXT필드에 붙여넣기 하면

값 뒤에 줄바꿈 처리가 되어 들어오는데 이 때 줄바꿈 밑 공백 제거하는 방법

 

 

시스템에 따들 줄바꿈 개행문자 차이

  • unix > \n
  • mac > \r
  • windows > \r\n

 

자바 줄바꿈 공백 제거

System.getProperty("line,separator")

 

public void setText(String txt) {
	String text = txt;
    text.replace(System.getProperty("line.separator").toString(), "");
}

 

public void setText(String txt) {
	String text = txt;
    text = text.replace("\n", "");
}

 

public void setText(String txt) {
	String text = txt;
    text = text.replace("\\s", "");
}