[Java&Jsp] Html tag 제거하는 방법 & 주석제거하는 방법
2014. 3. 5. 14:58ㆍ프로그래밍/Java
String문자열내에 html Tag를 제거하는 방법!
String.replaceAll("<(/)?([a-zA-Z]*)(\\s[a-zA-Z]*=[^>]*)?(\\s)*(/)?>","");
- 정규 표현식으로 제거
ex) testString.replaceAll("<(/)?([a-zA-Z]*)(\\s[a-zA-Z]*=[^>]*)?(\\s)*(/)?>","");
String.replaceAll("<!--.*-->","");
- html 주석제거하기
'프로그래밍 > Java' 카테고리의 다른 글
Attribute qualified names must be unique within an element 에러 해결 (0) | 2014.04.10 |
---|---|
[Java] Java에서 Shell command 실행 (0) | 2014.03.07 |
[Java/Jsp] 파일 업로드 시 Encoding 확인 (0) | 2014.02.21 |
[JAVA/JSP] String Null / JSTL Null 체크 (1) | 2014.02.21 |
base64 Exception 처리 (0) | 2014.02.21 |