사용자 도구

사이트 도구


java:regex:links

문자열의 링크를 찾아서 a 태그로 감싸주기

public static String populateLinks(String str) {
 
	Matcher matcher = Pattern.compile("(https?|ftp)://[\\S]+").matcher(str);
 
	StringBuffer sb = new StringBuffer();
	while(matcher.find()) {
		String link = matcher.group();
		link = link.replaceAll("\\\\", "\\\\\\\\").replaceAll("\\$", "\\\\\\$");
		matcher.appendReplacement(sb, String.format("<a href=\"%s\">%s</a>", link,link));
	}
	matcher.appendTail(sb);
	return sb.toString();
}
java/regex/links.txt · 마지막으로 수정됨: 2010/12/15 11:44 저자 kwon37xi