PCRE 库函数简介

PCRE 函数库

PCRE:perl语言兼容正则表达式。是一个用C语言编写的正则表达式的函数库,是轻量级的函数库,比之Boost提供的正则表达式库要小的多。PCRE使用十分简单,而且功能也很强大。PCRE是一个NFA正则引擎,但它也同时实现了DFA,只是满足了数学意义上的正则。PCRE提供了19个接口函数。

1、pcre_compile
     原型:  pcre*  pcre_compile(const char *pattern, int options, const char **errptr, int *erroffset, const unsigned char *tableptr);
     功能:  将一个正则表达式编译成一个内部表示,在匹配多个字符串时,可以加速匹配。
     参数:  pattern:    正则表达式
                options:    为0,或者其他参数选项
                errptr:       出错消息
                erroffset:     出错位置
                tableptr:    指向一个字符数组的指针,可以设置为空NULL。

2pcre_compile2
      原型:pcre*  pcre_compile2(const char *pattern, int options, int *errorcodeptr, const char **errptr, int *erroffset, const unsigned char *tableptr);
      功能:将一个正则表达式编译成一个内部表示,在匹配多个字符串时,可以加速匹配。
      参数: pattern:            正则表达式
                options:            为0,或者其他参数选项
                errorcodeptr:    存放出错码
                errptr:               出错消息
                erroffset:             出错位置
                tableptr:            指向一个字符数组的指针,可以设置为空NULL。

3、pcre_config
     原型:int  pcre_config(int what, void *where);
     功能:查询当前PCRE版本中使用的选项信息。
     参数:what:    选项名
                where:  存储结果的位置

4、pcre_copy_named_substring
     原型:int  pcre_copy_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, char *buffer, 
                                                                        int buffersize);

     功能:根据名字获取捕获的字串。
     参数:code:            成功匹配的模式
                subject:        匹配的串
                ovector:        pcre_exec()使用的偏移变量
                stringcount: pcre_exec()的返回值
                stringname:    捕获字符串的名字
                buffer:          用来存储的缓冲区
                buffersize:    缓冲区的大小

5pcre_copy_substring
     原型:int pcre_copy_substring(const char *subject, int *ovector, int stringcount, int stringnumber, char *buffer, int buffersize);
     功能:根据编号获取捕获的字符串。
     参数:subject:            匹配的串
                ovector:            pcre_exec()使用的偏移变量
                stringcount:     pcre_exec()的返回值
                stringnumber :   捕获字符串的编号
                buffer:              用来存储的缓冲区
                buffersize:       缓冲区的大小        

6、pcre_dfa_exec
      原型:int  pcre_dfa_exec(const pcre *code, const pcre_extra *extra, const char *subject, int length, int startoffset, int options, int *ovector, int     
                                                ovecsize, int *workspace, int wscount);  
      
      功能:使用编译好的模式进行匹配,采用的是一种非传统的方法DFA,只是对匹配串扫描一次(与perl不兼容)。  
      参数:code:            编译好的模式。
                 extra:            指向一个pcre_extra结构体,可以为NULL。
                 subject:        需要匹配的字符串。
                 length:          匹配字符串的长度(Byte)。
                 startoffset:   匹配的开始位置。
                 options:       选项位。
                 ovector:       指向一个结果的整形数组。
                 ovecsize:     数组大小。
                 workspace: 一个工作区的数组。
                 wscount:     数组的大小。

7、pcre_exec
      原型:int  pcre_exec(const pcre *code, const pcre_extra *extra, const char *subject, int length, int startoffset, int options, int *ovector, int 
                                            ovecsize);
      功能:使用编译好的模式进行匹配,采用与perl相似的算法,返回匹配串的偏移位置。
      参数:code:            编译好的模式。
                 extra:            指向一个pcre_extra结构体,可以为NULL。
                 subject:        需要匹配的字符串。
                 length:          匹配字符串的长度(Byte)。
                 startoffset:   匹配的开始位置。
                 options:        选项位。
                 ovector:        指向一个结果的整形数组。
                 ovecsize:      数组的大小。

8、pcre_free_substring
      原型:  void pcre_free_substring(const char *stringptr);
      功能:  释放pcre_get_substring()和pcre_get_named_substring()申请的内存空间。
      参数:stringptr:指向字符串的指针。

9、pcre_free_substring_list
      原型:void pcre_free_substring_list(const char **stringptr);  
      功能:释放由pcre_get_substring_list()申请的内存空间。
      参数:stringptr:指向字符串的指针

10、pcre_fullinfo
        原型:int pcre_fullinfo(const pcre *code, const pcre_extra *extra, int what, void *where);
        功能:返回编译出来的模式的信息。
        参数:code:        编译好的模式。
                   extra:        pcre_study()的返回值,或者是NULL。
                   what:        什么信息。
                   where:      存储位置 。

11、pcre_get_named_substring
        原型:int   pcre_get_named_substring(const pcre *code, const char *subject, int *ovector, int stringcount, const char *stringname, const char 
                                                                            **stringptr);
        功能:根据编号获取捕获的字符串。
        参数:code:                成功匹配的模式。
                   subject:            匹配的字符串。
                   ovector:            pcre_exec()使用的偏移向量。
                   stringcount:     pcre_exec()的返回值。
                   stringname:     捕获字符串的名字。
                   stringptr:          存放结果的字符串指针。

12、pcre_get_stringnumber
        原型:int pcre_get_stringnumber(const pcre *code, const char *name);
        功能:根据命名捕获的名字获取对应的编号。
        参数:code:        成功匹配的模式。
                   name:       捕获的名字。

13、pcre_get_substring
        原型:int pcre_get_substring(const char *subject, int *ovector, int stringcount, int stringnumber, const char **stringptr);
        功能:获取匹配的字符串
        参数:subject:            成功匹配的字符串。
                   ovector:            pcre_exec()使用的偏移向量。
                   stringcount:     pcre_exec()的返回值。
                   stringnumber: 获取的字符串编号。
                   stringptr:         字符串指针。

14、pcre_get_substring_list
        原型:int pcre_get_substring_list(const char *subject, int *ovector, int stringcount, const char ***listptr);
        功能:获取匹配的所有字串。
        参数:subject:            成功匹配的串。
                   ovector:            pcre_exec()使用的偏移量。
                   stringcount:     pcre_exec()的返回值。
                   listptr:               字符串列表的指针。

15、pcre_info     
        原型:int pcre_info(const pcre *code, int *optptr, int *firstcharptr);
        注:   已经过时,使用pcre_fullinfo替代。

16、pcre_maketables
        原型:const unsigned char*  pcre_maketables(void);
        功能:生成一个字符表,表中的每一个元素的值都不大于256,可以用它传给pcre_compile()替换掉内建的字符表。

17、pcre_refcount
        原型:int pcre_refcount(pcre *code, int adjust);
        功能:编译模式的引用计数。
        参数:code:        已经编译的模式。
                   adjust:     调整的引用计数值。 

18、pcre_study
        原型:pcre_extra*  pcre_study(const pcre *code, int options, const char **errptr);
        功能:对编译好的模式进行学习,提取可以加速匹配过程的信息。
        参数:code:        已编译好的模式。
                   options:    选项。
                   errptr:          出错信息。

19、pcre_version  
        原型char*  pcre_version(void);
        功能:返回PCRE的版本信息


































评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值