Sword pcre库使用
- #include <stdlib.h>
- #include <string.h>
- #include "regularhelper.h"
- #include "pcre/pcre.h"
- #include "stringhelper.h"
- int regularLoop(pcre *re, char *pcSrc, size_t ovecCount, void *userData, FuncHandle callback);
- /********************************************************
- Func Name: regularInfer
- Date Created: 2018-9-29
- Description: pcre识别
- Input:
- Output: error code
- Caution:
- *********************************************************/
- int regularInfer(char *pcSrc, const char *pattern, void *userData, FuncHandle callback)
- {
- int result = ;
- pcre *re = NULL;
- int erroffset;
- const char *pcError = NULL;
- size_t ovecCount = ;
- if (NULL == pcSrc || NULL == pattern || NULL == userData ||NULL == callback)
- {
- return -;
- }
- /*
- 子串的个数就是正则表达式中()的个数
- */
- //计算子串的个数
- ovecCount = matchOperator(pattern, '(', ')') + ;
- //编译正则表达式的pcre内部表示结构
- re = pcre_compile(pattern, , &pcError, &erroffset, NULL);
- if (NULL == re)
- {
- return -;
- }
- //匹配字符串
- result = regularLoop(re, pcSrc, ovecCount, userData, callback);
- //清理资源
- pcre_free(re);
- return result;
- }
- /********************************************************
- Func Name: regularLoop
- Date Created: 2018-9-29
- Description: 循环识别字符串
- Input:
- Output: error code
- Caution:
- *********************************************************/
- int regularLoop(pcre *re, char *pcSrc, size_t ovecCount, void *userData, FuncHandle callback)
- {
- int rc = ;
- int *offsetVector = NULL;
- int offset = ;
- int ovecSize = ;
- int match = ;
- //分配内存空间
- //ovecSize should be a multiple of 3
- ovecSize = ovecCount * ;
- offsetVector = (int *)malloc(ovecSize * sizeof(int));
- if (NULL == offsetVector)
- {
- return -;
- }
- memset(offsetVector, , ovecSize * sizeof(int));
- while ()
- {
- //匹配正则表达式
- ////offset为偏移量,为了循环匹配
- rc = pcre_exec(re, NULL, pcSrc, strlen(pcSrc), offset, , offsetVector, ovecSize);
- if (rc <= )
- {
- break;
- }
- //用户自处理
- callback(pcSrc, offsetVector, rc, userData);
- //偏移量赋值
- offset = offsetVector[];
- match++;
- }
- return match > ? : -;
- }
- #ifdef TEST
- #include "regularhelper.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- void deal(char *pcData, int *regVector, size_t size, void *userArg)
- {
- char gcData[] = { };
- int i = ;
- for (i = ; i < size; i++)
- {
- //regVector[2 * i]表示开始位置
- //regVector[2 * i + 1] 表示结束位置
- strncpy(gcData, pcData + regVector[ * i], regVector[ * i + ] - regVector[ * i]);
- printf("key is %s\n", gcData);
- }
- printf("\n", gcData);
- }
- void test()
- {
- char *p = NULL;
- //char str[] = "http://1.203.80.138:8001/tts?user_id=speech&domain=1&language=zh&audiotype=6&rate=1&speed=5&text=asr error goodbye";
- char str[] = "tabceftsfasdft12345t";
- int result = ;
- //memset(&data, 0, sizeof(STParamList));
- int data;
- //提取所有的参数
- result = regularInfer(str, "t(.)(.)(.)(.)(.)t", &data, deal);
- if (result)
- {
- printf("regularInfer() error .\n");
- }
- }
- int main(int argc,char * argv[])
- {
- test();
- return ;
- }
- #endif
Sword pcre库使用的更多相关文章
- Linux下编译安装PCRE库
备注:如果没有root权限,使用 --prefix 指定安装路径 ./configure --prefix=/home/work/tools/pcre-8.xx =================== ...
- centos7下安装pcre库(pcretest)
在linux下需要对正则表达式的验证,使用的验证工具是pcretest,这个工具集成在pcre库中,下面是安装教程. 安装环境是centos7. 1)首先去官网下载压缩包文件. 其他的source网站 ...
- Linux 安装 nginx 安装PCRE库
PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库.这些在执行正规表达式模式匹配时用与Perl 5同样的语法和语义是 ...
- pcre库
pcre : perl compatible regular expressions , perl 兼容正则表达式 www.pcre.org 按装pcre是为了使Nginx支持具备URI重写功能的 ...
- Sword pcre库函数学习三
14.pcre_get_substring_list 原型: #include <pcre.h> int pcre_get_substring_list(const char *subje ...
- Sword pcre库函数学习二
9.pcre_free_substring_list 原型: #include <pcre.h> void pcre_free_substring_list(const char **st ...
- Sword pcre库函数学习一
0.pcre_exec 原型: #include <pcre.h> int pcre_exec(const pcre *code, const pcre_extra *extra, con ...
- Sword 第三方库介绍二
/* uuid生成 */ #include <stdio.h> #include <stdlib.h> /* calloc()函数头文件 */ #include <ass ...
- Sword 第三方库介绍一
/* 获取字符编码 */ #include <stdio.h> #include <stdlib.h> /* calloc()函数头文件 */ #include <str ...
随机推荐
- 抛弃百度UMEditor,拥抱summernote (解决上传文件又慢又卡的问题)
由于一些项目上的原因以及相关因素,我们使用其他富文本编辑器替代了UMEditor 本来用CKEditor,但是团队觉得使用起来很不顺手,尤其图片上传十分不爽,功能复杂但是使用起来比较麻烦 后来我们又替 ...
- centos chroot使用
chroot命令用来在指定的根目录下运行指令.chroot,即 change root directory (更改 root 目录).在 linux 系统中,系统默认的目录结构都是以/,即是以根 (r ...
- k8s相关文档
kube-dns组件架构区别看这个就够了 http://cizixs.com/2017/04/11/kubernetes-intro-kube-dns kubed-dns设置细节看这个就够了 http ...
- 在sublime text3中安装sass编译scss文件
一 搭建环境 首先安装ruby环境,不然会编译失败,在这里下载ruby ,安装的时候选择第二项 在cmd中输入gem -v 显示版本号说明ruby安装成功 待ruby安装成功后,在cmd中输入 gem ...
- FLINK SQL Calcite原理
http://wuchong.me/blog/2017/03/30/flink-internals-table-and-sql-api/ https://cloud.tencent.com/devel ...
- Spark VS Presto VS Impala
https://www.quora.com/What-is-the-difference-between-Spark-and-Presto
- pandas数组(pandas Series)-(4)NaN的处理
上一篇pandas数组(pandas Series)-(3)向量化运算里说到,将两个 pandas Series 进行向量化运算的时候,如果某个 key 索引只在其中一个 Series 里出现,计算的 ...
- angular内置过滤器-filter
这篇文章来讲解一下angular内置的filter过滤器. 没错,这个过滤器的名字,就叫'filter',虽然自定义过滤器也是使用module.filter()...但是不要混淆了,这个filter就 ...
- MIME详解
MIME详解 原文:http://blog.csdn.net/cxm_hwj/article/details/6690058 MIME,英文全称为“Multipurpose Internet Mail ...
- shell 全局剔除标点符号
vim打开文件 []如果是单个字符的话,加上中括号就代表“或”了 :%s/[`~!@#$^&*()=|{}':;',\[\].<>?�/¥……——|[]‘::”“'.,.]//g ...