สอบถามเกี่ยวกับ การเขียน node js ในการใช้ regular expes ในการตัด tag html ที่เรียกมาจาก http request
strip_tags ?
Date :
2013-08-29 20:43:38
By :
mr.win
แบบนี้ป่าว
Code (JavaScript)
var open_regex = /<[^>]+>/g
var end_regex = /<\/[^>]+>/g
html = html.replace(open_regex, '');
html = html.replace(end_regex, '');
ประวัติการแก้ไข 2013-08-29 21:03:40 2013-08-29 21:43:29
Date :
2013-08-29 21:01:51
By :
pjgunner.com
Code (JavaScript)
html = "<div>\n<ol>\n5555\n</ol>\n</div>";
var open_regex = /<[^>]+>/g
var end_regex = /<\/[^>]+>/g
html = html.replace(open_regex, '');
html = html.replace(end_regex, '');
alert(html);
result: 5555
Date :
2013-08-30 13:23:26
By :
pjgunner.com
ถามหน่อย node.js กะ php อันไหนเร็วกว่ากัน
Date :
2013-08-30 13:27:43
By :
pjgunner.com
Load balance : Server 05