1. #include <stdlib.h>
  2. #include <string.h>
  3.  
  4. #include "regularhelper.h"
  5. #include "pcre/pcre.h"
  6. #include "stringhelper.h"
  7.  
  8. int regularLoop(pcre *re, char *pcSrc, size_t ovecCount, void *userData, FuncHandle callback);
  9.  
  10. /********************************************************
  11. Func Name: regularInfer
  12. Date Created: 2018-9-29
  13. Description: pcre识别
  14. Input:
  15. Output: error code
  16. Caution:
  17. *********************************************************/
  18. int regularInfer(char *pcSrc, const char *pattern, void *userData, FuncHandle callback)
  19. {
  20. int result = ;
  21. pcre *re = NULL;
  22. int erroffset;
  23. const char *pcError = NULL;
  24. size_t ovecCount = ;
  25.  
  26. if (NULL == pcSrc || NULL == pattern || NULL == userData ||NULL == callback)
  27. {
  28. return -;
  29. }
  30.  
  31. /*
  32. 子串的个数就是正则表达式中()的个数
  33. */
  34. //计算子串的个数
  35. ovecCount = matchOperator(pattern, '(', ')') + ;
  36.  
  37. //编译正则表达式的pcre内部表示结构
  38. re = pcre_compile(pattern, , &pcError, &erroffset, NULL);
  39. if (NULL == re)
  40. {
  41. return -;
  42. }
  43.  
  44. //匹配字符串
  45. result = regularLoop(re, pcSrc, ovecCount, userData, callback);
  46.  
  47. //清理资源
  48. pcre_free(re);
  49.  
  50. return result;
  51. }
  52.  
  53. /********************************************************
  54. Func Name: regularLoop
  55. Date Created: 2018-9-29
  56. Description: 循环识别字符串
  57. Input:
  58. Output: error code
  59. Caution:
  60. *********************************************************/
  61. int regularLoop(pcre *re, char *pcSrc, size_t ovecCount, void *userData, FuncHandle callback)
  62. {
  63. int rc = ;
  64. int *offsetVector = NULL;
  65. int offset = ;
  66. int ovecSize = ;
  67. int match = ;
  68.  
  69. //分配内存空间
  70. //ovecSize should be a multiple of 3
  71. ovecSize = ovecCount * ;
  72. offsetVector = (int *)malloc(ovecSize * sizeof(int));
  73. if (NULL == offsetVector)
  74. {
  75. return -;
  76. }
  77. memset(offsetVector, , ovecSize * sizeof(int));
  78.  
  79. while ()
  80. {
  81. //匹配正则表达式
  82. ////offset为偏移量,为了循环匹配
  83. rc = pcre_exec(re, NULL, pcSrc, strlen(pcSrc), offset, , offsetVector, ovecSize);
  84. if (rc <= )
  85. {
  86. break;
  87. }
  88. //用户自处理
  89. callback(pcSrc, offsetVector, rc, userData);
  90. //偏移量赋值
  91. offset = offsetVector[];
  92. match++;
  93. }
  94.  
  95. return match > ? : -;
  96.  
  97. }
  1. #ifdef TEST
  2.  
  3. #include "regularhelper.h"
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8.  
  9. void deal(char *pcData, int *regVector, size_t size, void *userArg)
  10. {
  11. char gcData[] = { };
  12. int i = ;
  13.  
  14. for (i = ; i < size; i++)
  15. {
  16. //regVector[2 * i]表示开始位置
  17. //regVector[2 * i + 1] 表示结束位置
  18. strncpy(gcData, pcData + regVector[ * i], regVector[ * i + ] - regVector[ * i]);
  19. printf("key is %s\n", gcData);
  20. }
  21. printf("\n", gcData);
  22. }
  23.  
  24. void test()
  25. {
  26. char *p = NULL;
  27. //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";
  28. char str[] = "tabceftsfasdft12345t";
  29. int result = ;
  30.  
  31. //memset(&data, 0, sizeof(STParamList));
  32. int data;
  33.  
  34. //提取所有的参数
  35. result = regularInfer(str, "t(.)(.)(.)(.)(.)t", &data, deal);
  36. if (result)
  37. {
  38. printf("regularInfer() error .\n");
  39. }
  40. }
  41.  
  42. int main(int argc,char * argv[])
  43. {
  44. test();
  45. return ;
  46. }
  47.  
  48. #endif

Sword pcre库使用的更多相关文章

  1. Linux下编译安装PCRE库

    备注:如果没有root权限,使用 --prefix 指定安装路径 ./configure --prefix=/home/work/tools/pcre-8.xx =================== ...

  2. centos7下安装pcre库(pcretest)

    在linux下需要对正则表达式的验证,使用的验证工具是pcretest,这个工具集成在pcre库中,下面是安装教程. 安装环境是centos7. 1)首先去官网下载压缩包文件. 其他的source网站 ...

  3. Linux 安装 nginx 安装PCRE库

    PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库.这些在执行正规表达式模式匹配时用与Perl 5同样的语法和语义是 ...

  4. pcre库

    pcre : perl compatible  regular expressions , perl 兼容正则表达式 www.pcre.org 按装pcre是为了使Nginx支持具备URI重写功能的 ...

  5. Sword pcre库函数学习三

    14.pcre_get_substring_list 原型: #include <pcre.h> int pcre_get_substring_list(const char *subje ...

  6. Sword pcre库函数学习二

    9.pcre_free_substring_list 原型: #include <pcre.h> void pcre_free_substring_list(const char **st ...

  7. Sword pcre库函数学习一

    0.pcre_exec 原型: #include <pcre.h> int pcre_exec(const pcre *code, const pcre_extra *extra, con ...

  8. Sword 第三方库介绍二

    /* uuid生成 */ #include <stdio.h> #include <stdlib.h> /* calloc()函数头文件 */ #include <ass ...

  9. Sword 第三方库介绍一

    /* 获取字符编码 */ #include <stdio.h> #include <stdlib.h> /* calloc()函数头文件 */ #include <str ...

随机推荐

  1. 抛弃百度UMEditor,拥抱summernote (解决上传文件又慢又卡的问题)

    由于一些项目上的原因以及相关因素,我们使用其他富文本编辑器替代了UMEditor 本来用CKEditor,但是团队觉得使用起来很不顺手,尤其图片上传十分不爽,功能复杂但是使用起来比较麻烦 后来我们又替 ...

  2. centos chroot使用

    chroot命令用来在指定的根目录下运行指令.chroot,即 change root directory (更改 root 目录).在 linux 系统中,系统默认的目录结构都是以/,即是以根 (r ...

  3. k8s相关文档

    kube-dns组件架构区别看这个就够了 http://cizixs.com/2017/04/11/kubernetes-intro-kube-dns kubed-dns设置细节看这个就够了 http ...

  4. 在sublime text3中安装sass编译scss文件

    一 搭建环境 首先安装ruby环境,不然会编译失败,在这里下载ruby ,安装的时候选择第二项 在cmd中输入gem -v 显示版本号说明ruby安装成功 待ruby安装成功后,在cmd中输入 gem ...

  5. FLINK SQL Calcite原理

    http://wuchong.me/blog/2017/03/30/flink-internals-table-and-sql-api/ https://cloud.tencent.com/devel ...

  6. Spark VS Presto VS Impala

    https://www.quora.com/What-is-the-difference-between-Spark-and-Presto

  7. pandas数组(pandas Series)-(4)NaN的处理

    上一篇pandas数组(pandas Series)-(3)向量化运算里说到,将两个 pandas Series 进行向量化运算的时候,如果某个 key 索引只在其中一个 Series 里出现,计算的 ...

  8. angular内置过滤器-filter

    这篇文章来讲解一下angular内置的filter过滤器. 没错,这个过滤器的名字,就叫'filter',虽然自定义过滤器也是使用module.filter()...但是不要混淆了,这个filter就 ...

  9. MIME详解

    MIME详解 原文:http://blog.csdn.net/cxm_hwj/article/details/6690058 MIME,英文全称为“Multipurpose Internet Mail ...

  10. shell 全局剔除标点符号

    vim打开文件 []如果是单个字符的话,加上中括号就代表“或”了 :%s/[`~!@#$^&*()=|{}':;',\[\].<>?�/¥……——|[]‘::”“'.,.]//g ...