/**
* editor 태그제거
* @param str
* @return
*/
public static String tagUtil(String str){
String tmp = "";
if(str == null || str.equals("")) {
return tmp = "";
}
String rex = "<(\"[^\"]*\"|\'[^\']*\'|[^\'\">])*>";
Pattern numP = Pattern.compile(rex);
Matcher mat = numP.matcher("");
mat.reset(str);
tmp = mat.replaceAll("");
return tmp;
}
'언어 > JAVA' 카테고리의 다른 글
[JAVA]Request to hashMap (0) | 2016.05.12 |
---|---|
[url] url 연결 (0) | 2016.04.29 |
리플렉션 (0) | 2015.04.01 |
Calendar , date (0) | 2015.03.17 |
제네릭스 (0) | 2015.03.17 |