샘플 소스
var request = require("request");
var cheerio = require("cheerio");
var url = ""; // 크롤링할 url
request(url, function(error, response, body) {
if (error) throw error;
var $ = cheerio.load(body);
var num = Number(1);
var postElements = $("div.guild_member em"); // 긁어올 element
//console.log(postElements)
postElements.each(function(e,i) {
var postTitle = $(this).text().trim();
var postTitle2 = $(this).text().trim().toUpperCase(); // 여기 밑으로는 개인로빅 사용하면 됨
//console.log(buf.indexOf(buf2));
//var convertChar = '';
if( postTitle2.indexOf("".toUpperCase()) >-1 ){
console.log(postTitle);
var startIndex = postTitle2.indexOf("(");
//console.log(startIndex);
console.log(postTitle2.substr(startIndex+1).replace(")",""));
}
});
});
oozie 적용중 (0) | 2018.07.02 |
---|---|
Crontab 표기 (0) | 2018.04.26 |
트위치tv , Discord API , Node 활용하여 디스코드 bot 만들기 (3) (0) | 2018.02.08 |
트위치tv , Discord API , Node 활용하여 디스코드 bot 만들기 (2) (0) | 2018.02.08 |
트위치tv , Discord API , Node 활용하여 디스코드 bot 만들기 (1) (0) | 2018.02.08 |