Extract Email from HTML?

พอดีต้องเขียนเมลขอ Quotation จากเวปรวมร้านค้าเวปนึง แต่ไม่อยาก copy เมลทีละอัน…
ผมเลยเขียน Java ง่ายๆ ทำตัวเหมือนพวก bot ที่คอยเก็บอีเมลตามเวป ดังนี้…

Pattern pattern = Pattern.compile(“(\w+)@(\w+\.)(\w+)(\.\w+)*”);
String target= “Any comment please contact webmaster@website.com or admin@website.com”;
Matcher matcher = pattern.matcher(target);

while (matcher.find()) {
System.out.println(matcher.group());
}

Leave a Reply

Your email address will not be published. Required fields are marked *