/*抓取網(wǎng)頁(yè)www.itsource.cn中所有的9位數(shù)的qq號(hào)*///1.向網(wǎng)頁(yè)www.itsource.cn發(fā)起請(qǐng)求,獲取網(wǎng)頁(yè)數(shù)據(jù)html;var http=require('http');var html='';http.get('http://wwww.itsource.cn/',function(res){res.on('data',function(txt){html+=txt;});res.on('end',function(){var reg=/[\u4E00-\u9FA5]{0,}$/;console(html.match(reg));});});//正則表達(dá)式該怎么寫(xiě)呢,想匹配所獲取網(wǎng)頁(yè)數(shù)據(jù)中的所有的漢字
匹配多個(gè)漢字的正則表達(dá)式該怎么寫(xiě)呢
qq_假裝感興趣_03243209
2018-03-07 14:43:40