C语言的HTML解析器 Streaming HTML parser
<p>Streaming HTML parser 是一个 C 语言的 HTML 解析器。</p> <p>示例代码:</p> <pre class="brush:cpp; toolbar: true; auto-links: false;">#include <stdio.h> #include <streamhtmlparser/htmlparser.h> int main(void) { unsigned int getchar_ret; htmlparser_ctx *parser = htmlparser_new(); while((getchar_ret = getchar()) != EOF) { char c = (char)getchar_ret; /* If we received a '$' character, we output the current tag and attribute * name to stdout. */ if (c == '$') { printf("[[ "); if (htmlparser_tag(parser)) printf("tag=%s ", htmlparser_tag(parser)); if (htmlparser_attr(parser)) printf("attr=%s ", htmlparser_attr(parser)); printf("]]"); /* If we read any other character, we pass it to the parser and echo it to * stdout. */ } else { htmlparser_parse_chr(parser, c); putchar(c); } } }</pre> <p></p> <p></p> <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1324371654843" target="_blank">http://www.open-open.com/lib/view/home/1324371654843</a></p>
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!