JSON解析包 libjson
- 授权协议: LGPL
- 开发语言: C/C++
- 操作系统: Linux
- 软件首页: http://projects.snarc.org/libjson/
- 软件文档: http://projects.snarc.org/libjson/chapter1.html
软件介绍
libjson 是一个完全兼容 JSON 规范的 json 格式数据的 C 语言解析包。
示例代码:
int ret;
json_parser parser;
ret = json_parser_init(&parser, NULL, my_callback, my_callback_data);
if (ret) {
fprintf(stderr, "something wrong happened during init\n");
return ret;
}
Flexible Pattern Matching in Strings
Gonzalo Navarro、Mathieu Raffinot / Cambridge University Press / 2007-7-30 / USD 64.99
String matching problems range from the relatively simple task of searching a single text for a string of characters to searching a database for approximate occurrences of a complex pattern. Recent ye......一起来看看 《Flexible Pattern Matching in Strings》 这本书的介绍吧!
